: (annot.displayCharacter == null
? String.valueOf(annot.secondaryStructure)
: annot.displayCharacter);
+
+ if (annot != null && annot.displayCharacter != null
+ && " X".equals(annot.displayCharacter))
+ {
+ // set a breakpoint here to catch output of 'X' which is currently a
+ // failing test case
+ // System.out.println("foo");
+ }
if (ch == null)
{
ch = " ";
}
static String PfamFile = "examples/PF00111_seed.stk",
+ PfamFile2 = "examples/PF001426_full.stk",
RfamFile = "examples/RF00031_folded.stk",
RnaSSTestFile = "examples/rna_ss_test.stk";
{
testFileIOwithFormat(new File(PfamFile), FileFormat.Stockholm, -1, 0,
false, false, false);
+ testFileIOwithFormat(new File(PfamFile2), FileFormat.Stockholm, -1, 0,
+ false, false, false);
}
@Test(groups = { "Functional" })