Skip to content

Commit

Permalink
Ensure gene_id attribute has prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
markquintontulloch committed Nov 7, 2024
1 parent 5a51012 commit 9172255
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static Map<String, String> getAttributes(Gff3DTO dto, BackendBulkDataProv
}

// Ensure identifiers have MOD prefix
for (String key : List.of("ID", "Parent")) {
for (String key : List.of("ID", "Parent", "gene_id")) {
if (attributes.containsKey(key)) {
String idsString = attributes.get(key);
if (StringUtils.equals(dataProvider.sourceOrganization, "WB")) {
Expand Down

0 comments on commit 9172255

Please sign in to comment.