New here!
I’m trying to loop a python script in bash that gets stats from fastq files. I want it to loop through all the fastq files in a directory and save the outputs in a text file. Ideally don’t want to edit the python script
This is the script that works when I’m not looping it:
JavaScript
x
2
1
python pythonscript.py -i fastqfile1.fq -q > stats1.txt
2
This is the loop that doesn’t work for me:
JavaScript
1
3
1
for f in *.fq; do python pythonscript.py -i "$f" -q;
2
do echo "${f%.*}" > "stats${f%.fq}.txt" done
3
Thank you
EDIT I have put the loop in a bash .sh script. The error message I get is ” looping_script.sh: line 5: syntax error near unexpected token do' looping_script.sh: line 5:
do’ “
Advertisement
Answer
Like this if you want all results in a single file:
JavaScript
1
4
1
for f in *.fq; do
2
python pythonscript.py -i "$f" -q
3
done > results.txt
4