stajichlab / AAFTF

Automatic Assembly For The Fungi
MIT License
19 stars 4 forks source link

AAFTF pipeline always fails at vecscreen step #19

Closed rfitak closed 1 year ago

rfitak commented 1 year ago

I had no issues running each step of the pipeline independently, but when I tried to run AAFTF in pipeline mode it always failed at the vecscreen step. Turns out there is just a simply typo on line 137 in the pipeline.py script. Can you remove the space?

# please change
    if not checkfile(basename + ' .vecscreen.fasta'):
# to
    if not checkfile(basename + '.vecscreen.fasta'):
hyphaltip commented 1 year ago

okay thank will fix - I rarely use pipeline mode so sorry for not testing that better.

hyphaltip commented 1 year ago

Fixed - will push new release