"If it worked the first time, it wouldn't be called research."
Apr 3, 2013
truncation scripts
Make a lists of files you want to process, and call it 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
No comments:
Post a Comment