Skip to content
Snippets Groups Projects
Commit f0568f45 authored by felmer's avatar felmer
Browse files

SSDM-1596: FastaUtilities.determineSequenceType() will ignore characters which are not valid codes.

SVN: 33646
parent 9a761afe
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ public class FastaUtilities
boolean isAmoniAcidCode = AMINO_ACID_CODES_SET.contains(c);
if (isNucleicAcidCode == false && isAmoniAcidCode == false)
{
throw new IllegalArgumentException("Invalid symbol '" + c + "' in line '" + line + "'.");
continue;
}
if (isNucleicAcidCode == false)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment