all.txt
.Then run following in bash:
while read fna;
do read qual;
echo "Running $fna";
time truncate_fasta_qual_files.py -f $fna -q $qual -b 220 -o filtered/;
echo "";
done < all.txt
I hope this works.
all.txt
.while read fna;
do read qual;
echo "Running $fna";
time truncate_fasta_qual_files.py -f $fna -q $qual -b 220 -o filtered/;
echo "";
done < all.txt
cd
to folder with all the converted .qual files.ls *.qual > quallist.txt
while read line;
do time quality_scores_plot.py -q $line -o quality_histograms/$line/;
done < quallist.txt