Skip to content

Commit c1c3c34

Browse files
committed
Whitespace in sequences is now removed to avoid problems with SABINE
git-svn-id: svn://rarepos.cs.uni-tuebingen.de/tfpredict@103 71221333-9ef9-431f-bb7f-117e0a61b720
1 parent 74f6543 commit c1c3c34

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

dist/TFpredict_1.3.jar

18 Bytes
Binary file not shown.

src/io/BasicTools.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ public static Map<String, String> readFASTA(String fasta_file, boolean readFullH
309309
curr_seq = new StringBuffer();
310310
first = false;
311311
} else {
312-
curr_seq.append(line);
312+
curr_seq.append(line.replaceAll("\\s+",""));
313313
}
314314
}
315315

0 commit comments

Comments
 (0)