Skip to content

Commit

Permalink
convert - evade mmseqs header parser
Browse files Browse the repository at this point in the history
  • Loading branch information
endixk committed Jan 29, 2024
1 parent 908d5bf commit 35851e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/leb/main/EzAAI.java
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ private int runConvert() {
String title = seq.getTitle();
String dna = seq.getSequence();
String prot = seqNucl ? Seqtools.translate_CDS(dna, 11, true) : dna;
bw.write(String.format(">%s # %d # %d\n%s\n", title.split("\\s+")[0], 1, prot.length()*3 + 3, prot));
bw.write(String.format(">ezaai_%s # %d # %d\n%s\n", title.split("\\s+")[0], 1, prot.length()*3 + 3, prot));
}
bw.close();

Expand Down

0 comments on commit 35851e3

Please sign in to comment.