From 870cbe5907b05d995a0207bb7eb4df3361d42bea Mon Sep 17 00:00:00 2001 From: "cmzmasek@gmail.com" Date: Sat, 12 Apr 2014 02:37:09 +0000 Subject: [PATCH] inprogress --- forester/java/src/org/forester/test/Test.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/forester/java/src/org/forester/test/Test.java b/forester/java/src/org/forester/test/Test.java index 5b3b42f..6bf4e04 100644 --- a/forester/java/src/org/forester/test/Test.java +++ b/forester/java/src/org/forester/test/Test.java @@ -4254,6 +4254,14 @@ public final class Test { .equals( "Escherichia coli (strain K12)" ) ) { return false; } + if ( !ParserUtils.extractScientificNameFromNodeName( "Escherichia coli (str. K12)" ) + .equals( "Escherichia coli (str. K12)" ) ) { + return false; + } + if ( !ParserUtils.extractScientificNameFromNodeName( "Escherichia coli (str. K12) bcl2" ) + .equals( "Escherichia coli (str. K12)" ) ) { + return false; + } } catch ( final Exception e ) { e.printStackTrace( System.out ); -- 1.7.10.2