Last active
September 27, 2018 04:44
-
-
Save joowkim/a0afaa1366ec58c697c21224a5aca1bb to your computer and use it in GitHub Desktop.
bash this.sh *.fasta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Line=0 | |
for var in "$@" | |
do | |
Line=`grep -c ">" $var` | |
echo $var $Line >> read.cnt.log | |
done | |
cat read.cnt.log | sort -k 2 -r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment