Can you guys recommend a good introductory book for shell scripting, and maybe python? I'm going to have to learn it better.
e.g. what does the % mean here?
for f in *.fasta.gz
do
metaphlan2.py $f --input_type fasta --nproc 4 > ${f%.fasta.gz}_profile.txt
done
thanks
John
e.g. what does the % mean here?
for f in *.fasta.gz
do
metaphlan2.py $f --input_type fasta --nproc 4 > ${f%.fasta.gz}_profile.txt
done
thanks
John
Comment