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
samtools stats produces a variety of statistics tables and puts them all into one into one output file.
samtools stats
# Summary Numbers. Use `grep ^SN | cut -f 2-` to extract this part. SN raw total sequences: 2935735484 # excluding supplementary and secondary reads SN filtered sequences: 0 SN sequences: 2935735484 SN is sorted: 1 SN 1st fragments: 1467867742 SN last fragments: 1467867742 ... ... # Coverage distribution. Use `grep ^COV | cut -f 2-` to extract this part. COV [1-1] 1 2079895 COV [2-2] 2 1438833 COV [3-3] 3 1073855 COV [4-4] 4 960210 COV [5-5] 5 864269 COV [6-6] 6 804097 COV [7-7] 7 755066 COV [8-8] 8 717224 COV [9-9] 9 692326 COV [10-10] 10 669770 ... ...
It would be great to run it, parse the output into a DataFrameList, and encode COV as Rle and calculate summary statistics.
DataFrameList
Rle
The text was updated successfully, but these errors were encountered:
No branches or pull requests
samtools stats
produces a variety of statistics tables and puts them all into one into one output file.It would be great to run it, parse the output into a
DataFrameList
, and encode COV asRle
and calculate summary statistics.The text was updated successfully, but these errors were encountered: