Entering edit mode
9.5 years ago
MAPK
★
2.1k
Hi Guys,
I am using pileup in Rsamtool from R package. I need to get the total "count" for each position. For example, for chr11, position 1643082, there are a total of 1 count of A, 3 counts of C and 18 counts of T. I want them in this order:
chr11:1643082 A:1, C:3, T:18
and so forth for position chr11, 47663948 to be shown in the result. There are thousands of different positions and I need to calculate the counts for each nucleotide.Thanks!
table1
seqnames pos strand nucleotide count which_label
1 chr11 1643082 + A 1 chr11:1643082-1643082
2 chr11 1643082 - C 3 chr11:1643082-1643082
3 chr11 1643082 + T 15 chr11:1643082-1643082
4 chr11 1643082 - T 3 chr11:1643082-1643082
5 chr11 47663948 + C 16 chr11:47663948-47663948
6 chr11 47663948 - C 11 chr11:47663948-47663948
7 chr11 47663948 + T 2 chr11:47663948-47663948
Thank you for your help!