View source: R/cluster_reads.R
cluster_reads | R Documentation |
Anchors, reads with sufficiently high mapping quality (e.g. MAPQ > 10) are clustered together.
cluster_reads(total, anchor_min_mapq, min_cov = 5, size_tol = 0, max_reads = 100)
total |
A |
anchor_min_mapq |
A integer specifying the minimum mapping quality score for being a anchor reads. |
min_cov |
A integer specifying the minimum coverage that a cluster should have. |
max_reads |
A integer specifying the maxium reads that a cluster can have for reducing the computational cost at the later step, especially, read assembly. |
Here is an example of min_cov=3, 1112221112211111 (min_cov = 2) 1122333222111 (min_cov >= 3) ——– ———– —— <- filtered ——- <- included ——- ——
A GRange object with a DataFrame that contains the reads consisting the cluster and their partner reads.
Cheuk-Ting Law
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.