Skip to content
Snippets Groups Projects
Commit 583fca0e authored by Holger Brandl's avatar Holger Brandl
Browse files

fixed fasta counter

parent 9dbabaad
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,9 @@ createCuffDbTrickyDisk(getwd(), gtfFile, genomeBuild)
export -f MakeCuffDB
CountSeqs(){
grep ">" $1 | wc -l
for fasta in $*; do
grep ">" $fasta | wc -l | sed 's/^/'$fasta':\t/g'
done
}
export -f CountSeqs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment