Entering edit mode
4.5 years ago
jamie.pike
▴
80
I'm having trouble setting up a for loop with BUSCO - I can't see any syntax errors, but I keep getting an error message reporting one. Can anyone see what the issue is?
nohup for i in $(cat BUSCO_list.txt); do busco -m genome -i ../DNA/${i} -o ${i}.BUSCO -l ~/Fusarium_data/Raw_Genomes/BUSCO/sordariomycetes_odb10 ; done &
bash: syntax error near unexpected token `do'
That's fixed it - great thank you!