shendurelab / LACHESIS

The LACHESIS software, as described in Nature Biotechnology (http://dx.doi.org/10.1038/nbt.2727)
Other
76 stars 32 forks source link

BugFix in make_bed_around_RE_site.pl #45

Open FlyPythons opened 6 years ago

FlyPythons commented 6 years ago

BugFix in processing the last fasta recod

zengxiaofei commented 3 years ago

Line 217-220 may result in a redundant > at the last line of the POS file:

# Get the new contig's name.
$contig_name = $1;
print localtime() . ": $contig_name\n" if $verbose;
print POS ">$contig_name\n";

Maybe just remove them?