Skip to content

Commit

Permalink
Whitespace in sequences is now removed to avoid problems with SABINE
Browse files Browse the repository at this point in the history
git-svn-id: svn://rarepos.cs.uni-tuebingen.de/tfpredict@103 71221333-9ef9-431f-bb7f-117e0a61b720
  • Loading branch information
mroemer committed Oct 20, 2015
1 parent 74f6543 commit c1c3c34
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified dist/TFpredict_1.3.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/io/BasicTools.java
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ public static Map<String, String> readFASTA(String fasta_file, boolean readFullH
curr_seq = new StringBuffer();
first = false;
} else {
curr_seq.append(line);
curr_seq.append(line.replaceAll("\\s+",""));
}
}

Expand Down

0 comments on commit c1c3c34

Please sign in to comment.