Count the number of sequences in fasta file using perl
I want to write a code that takes file input from the user in the command line and gives an output of the number of sequences in the input file, Total Length of all the sequence, Max sequence length, Min sequence length and Average length of the sequence.
• 4,215 views
•
link
1 answer
You can do many things in UNIX command line using Perl and "wc".
Counting the number of sequences:
grep '>' INPUT.fasta | wc -l
Counting the total length of all sequences:
grep -v '>' INPUT.fasta | perl -pe 's/[\n\r]//g' | wc -c
List of all sequence lengths:
cat INPUT.fasta |\
perl -pe '/^>/ ? s/.*// : s/[\n\r]//g' |\
tail -n +2 |\
perl -pe 's/.*/length($&)/e'
• 1 views
•
link
Log in to answer this question.
Hello koushikayaluri ,
and what have you done so far? Where you run in trouble and need our help?
fin swimmer
Hello koushikayaluri!
It appears that your post has been cross-posted to another site: https://stackoverflow.com/questions/52378534
This is typically not recommended as it runs the risk of annoying people in both communities.