We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wc -l your_file.fastq 1240 your_file.fastq
1240 is the number of lines, FastQ has four lines per sequence so we can divide by 4 = 310
Now the long way to get to the real count :-) echo "$(wc -l your_file.fastq | cut -d' ' -f2) / 4" | bc 310
The text was updated successfully, but these errors were encountered:
No branches or pull requests
wc -l your_file.fastq
1240 your_file.fastq
1240 is the number of lines, FastQ has four lines per sequence so we can divide by 4 = 310
Now the long way to get to the real count :-)
echo "$(wc -l your_file.fastq | cut -d' ' -f2) / 4" | bc
310
The text was updated successfully, but these errors were encountered: