// sequences retrieved in a Pfam domain alignment also have a PFAM database
// reference
SequenceI sq = new Sequence("FER2_SPIOL", "AASSDDDFFF");
+ sq.addDBRef(new DBRefEntry("PFAM", "1", "PF00111"));
sq.addDBRef(new DBRefEntry("UNIPROT", "1", "P00224"));
sq.addDBRef(new DBRefEntry("PFAM", "1", "P00224.1"));
- sq.addDBRef(new DBRefEntry("PFAM", "1", "PF00111"));
AppletFormatAdapter af = new AppletFormatAdapter();
String toStockholm = af.formatSequences(FileFormat.Stockholm,
new Alignment(new SequenceI[]
System.out.println(toStockholm);
// bleh - java.util.Regex sucks
assertTrue(
- Pattern.compile(".*\\s+AC\\s+P00224.*",
- java.util.regex.Pattern.DOTALL).matcher(toStockholm)
- .matches(),
+ Pattern.compile(
+ "^#=GS\\s+FER2_SPIOL(/\\d+-\\d+)?\\s+AC\\s+P00224$",
+ Pattern.MULTILINE).matcher(toStockholm)
+ .find(),
"Couldn't locate UNIPROT Accession in generated Stockholm file.");
AlignmentI fromStockholm = af.readFile(toStockholm,
DataSourceType.PASTE, FileFormat.Stockholm);