diff --git a/MITObim.pl b/MITObim.pl index 3d7bc4e..932ad89 100755 --- a/MITObim.pl +++ b/MITObim.pl @@ -553,7 +553,9 @@ sub extract_backbone{ open(FH1,"$outfile") or die $!; while () { - $_ =~ s/x/N/g; + if($_ !~ m/^>/) { + $_ =~ s/x/N/g; + } print FH2 $_; } close(FH1);