Last active
August 27, 2015 12:22
-
-
Save katwre/3da58ff9c70d775af120 to your computer and use it in GitHub Desktop.
count total number of reads
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
bampath = "example.bam" | |
command=paste0("samtools idxstats ", bampath," | awk 'BEGIN {a=0} {a += $3 } END{print a }'") | |
tot.mapped=as.numeric(try(system(command,intern=TRUE))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment