Skip to content

Commit

Permalink
Account for poor data in nematode mitochondrial chromosome
Browse files Browse the repository at this point in the history
  • Loading branch information
eweitz committed Jun 13, 2019
1 parent 15c9bb9 commit 7f4c79c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/js/services/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ function parseMitochondrion(result, ideo) {
chrName = result.subname.split('|')[cnIndex];
}
} else {
return [null, null];
// Encountered in e.g. Caenorhabditis elegans genome WBcel235 (GCF_000002985.6)
return ['MT', 'mitochondrion'];
}

return [chrName, type];
Expand Down

0 comments on commit 7f4c79c

Please sign in to comment.