Skip to content

Commit dce2b66

Browse files
Merge branch 'develop' into np_add_ref_files_to_buildind_docs
2 parents a1a75d1 + 5eef3b4 commit dce2b66

File tree

2 files changed

+64
-61
lines changed

2 files changed

+64
-61
lines changed

all_of_us/mitochondria/mt_coverage_merge.wdl

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -616,15 +616,16 @@ task finalize_mt_with_covdb {
616616
String artifact_prone_sites_reference = "default"
617617
String file_name
618618
Int minimum_homref_coverage = 100
619-
Int homref_position_block_size = 2048
619+
Int homref_position_block_size = 1024
620620
Int n_final_partitions = 1000
621621
Boolean overwrite = false
622622

623623
# Runtime parameters
624-
Int memory_gb = 256
625-
Int cpu = 40
624+
Int memory_gb = 768
625+
Int cpu = 96
626626
Int disk_gb = 4000
627627
String disk_type = "SSD"
628+
String machine_type = "n2d-highmem-96"
628629
}
629630

630631
command <<<
@@ -705,6 +706,7 @@ task finalize_mt_with_covdb {
705706
memory: memory_gb + " GB"
706707
cpu: cpu
707708
disks: "local-disk " + disk_gb + " " + disk_type
709+
predefinedMachineType: machine_type
708710
}
709711
}
710712

website/docs/Pipelines/snM3C/summary_metrics.md

Lines changed: 59 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -10,63 +10,64 @@ The summary file is generated using the `smn3c_summary()` function of a [custom
1010

1111
The snm3C pipeline was adapted from YAP (Yet Another Pipeline) in collaboration with Hanqing Liu, Wei Tian, Wubin Ding, Huaming Chen, Chongyuan Luo, Jingtian Zhou, and the entire laboratory of Joseph Ecker. For more information about the snm3C metrics, please see the [YAP documentation](https://hq-1.gitbook.io/mc/) created by Hanqing Liu.
1212

13-
| Metric | Details |
14-
|:------ | :------ |
15-
| cell | The unique identifier for each cell. |
16-
| InputReadPairs | Total number of read pairs. |
17-
| InputReadPairsBP | Total number of base pairs. |
18-
| TrimmedReadPairs | Total number of trimmed read pairs. |
19-
| R1WithAdapters | Number of R1 reads trimmed to remove Illumina adapter. |
20-
| R1QualTrimBP | Number of R1 base pairs trimmed due to low base quality. |
21-
| R1TrimmedReadsBP | Number of R1 base pairs remaining after adapter and quality trimming. |
22-
| R2WithAdapters | Number of R2 reads trimmed to remove Illumina adapter. |
23-
| R2QualTrimBP | Number of R2 base pairs trimmed due to low base quality. |
24-
| R2TrimmedReadsBP | Number of R2 base pairs remaining after adapter and quality trimming. |
25-
| UniqueMappedReads | Number of uniquely mapped reads. |
26-
| UniqueMappingRate | Rate of unique read mapping. |
27-
| MultiMappedReads | Number of multimapped reads. |
28-
| MultiMappingRate | Rate of multimapping. |
29-
| OverallMappingRate | Rate of mapping for all reads. |
30-
| R1SplitReadsUniqueMappedReads | Number of uniquely mapped R1 reads. |
31-
| R1SplitReadsUniqueMappingRate | Rate of unique R1 read mapping. |
32-
| R1SplitReadsMultiMappedReads | Number of multimapped R1 reads. |
33-
| R1SplitReadsMultiMappingRate | Rate of R1 read multimapping. |
34-
| R1SplitReadsOverallMappingRate | Rate of mapping for all R1 reads. |
35-
| R2SplitReadsUniqueMappedReads | Number of uniquely mapped R2 reads. |
36-
| R2SplitReadsUniqueMappingRate | Rate of unique R2 read mapping. |
37-
| R2SplitReadsMultiMappedReads | Number of multimapped R2 reads. |
38-
| R2SplitReadsMultiMappingRate | Rate of R2 read multimapping. |
39-
| R2SplitReadsOverallMappingRate | Rate of mapping for all R2 reads. |
40-
| UniqueAlignFinalReads | |
41-
| UniqueAlignDuplicatedReads | |
42-
| UniqueAlignPCRDuplicationRate |
43-
| CisContacts | Number of chromatin contacts where the two loci are on the same chromosome. |
44-
| CisCutContacts |
45-
| CisMultiContacts |
46-
| CisCutMultiContacts |
47-
| TransContacts | Number of chromatin contacts where the two loci are on different chromosome. |
48-
| TransCutContacts |
49-
| TransMultiContacts |
50-
| TransCutMultiContacts |
51-
| ChimericContacts |
52-
| NoContacts |
53-
| MappedFragments |
54-
| DeduppedContacts |
55-
| ContactsDeduplicationRate |
56-
| TotalCisContacts |
57-
| TotalTransContacts |
58-
| TotalMultiContacts |
59-
| CisContactsRatio |
60-
| TransContactsRatio |
61-
| MultiContactsRatio |
62-
| mCCCmC | Total methylated cytosine in the CCC context. |
63-
| mCGmC | Total methylated cytosine in the CG context. |
64-
| mCHmC | Total methylated cytosine in the CH context. |
65-
| mCCCCov | Total covered cytosine in the CCC context. |
66-
| mCGCov | Total covered cytosine in the CG context. |
67-
| mCHCov | Total covered cytosine in the CH context. |
68-
| mCCCFrac | Fraction of methylated cytosine (`mCCCmC`) divided by covered cytosine (`mCCCCov`) in the CCC context. |
69-
| mCGFrac | Fraction of methylated cytosine (`mCGmC`) divided by covered cytosine (`mCGCov`) in the CG context. |
70-
| mCHFrac | Fraction of methylated cytosine (`mCHmC`) divided by covered cytosine (`mCHCov`) in the CH context. |
13+
| Metric | Details |
14+
| :---------------------------- | :------------------------------------------------------------------------------------------------------------------------ |
15+
| cell | The unique identifier for each cell. |
16+
| InputReadPairs | Total number of read pairs. |
17+
| InputReadPairsBP | Total number of base pairs. |
18+
| TrimmedReadPairs | Total number of trimmed read pairs. |
19+
| R1WithAdapters | Number of R1 reads trimmed to remove Illumina adapter. |
20+
| R1QualTrimBP | Number of R1 base pairs trimmed due to low base quality. |
21+
| R1TrimmedReadsBP | Number of R1 base pairs remaining after adapter and quality trimming. |
22+
| R2WithAdapters | Number of R2 reads trimmed to remove Illumina adapter. |
23+
| R2QualTrimBP | Number of R2 base pairs trimmed due to low base quality. |
24+
| R2TrimmedReadsBP | Number of R2 base pairs remaining after adapter and quality trimming. |
25+
| UniqueMappedReads | Number of uniquely mapped reads. |
26+
| UniqueMappingRate | Rate of unique read mapping. |
27+
| MultiMappedReads | Number of multimapped reads. |
28+
| MultiMappingRate | Rate of multimapping. |
29+
| OverallMappingRate | Rate of mapping for all reads. |
30+
| R1UniqueMappedReads | Number of uniquely mapped R1 reads. |
31+
| R1MultiMappedReads | Number of multimapped R1 reads. |
32+
| R1UniqueMappingRate | Rate of unique R1 read mapping. |
33+
| R1MultiMappingRate | Rate of R1 read multimapping. |
34+
| R1OverallMappingRate | Rate of mapping for all R1 reads. |
35+
| R2UniqueMappedReads | Number of uniquely mapped R2 reads. |
36+
| R2MultiMappedReads | Number of multimapped R2 reads. |
37+
| R2UniqueMappingRate | Rate of unique R2 read mapping. |
38+
| R2MultiMappingRate | Rate of R2 read multimapping. |
39+
| R2OverallMappingRate | Rate of mapping for all R2 reads. |
40+
| UniqueAlignFinalReads | Final unique mapped total reads after picard deduplication. |
41+
| UniqueAlignDuplicatedReads | Paired and unpaired duplicated reads. |
42+
| UniqueAlignPCRDuplicationRate | FinalReads /(FinalReads and DuplicatedReads). |
43+
| CisContacts | Number of chromatin contacts where the two loci are on the same chromosome. |
44+
| CisCutContacts | Number of read pairs that are split from the same read at the cut site, and map to the same chromosome. |
45+
| CisMultiContacts | CisContacts read pair contains multiple read contacts. |
46+
| CisCutMultiContacts | CisCutContacts read pair contains multiple read contacts. |
47+
| TransContacts | Number of chromatin contacts where the two loci are on different chromosome. |
48+
| TransCutContacts | Number of read pairs that are split from the same read at the cut site, and map to different chromosomes. |
49+
| TransMultiContacts | TransContacts read pair contains multiple read contacts. |
50+
| TransCutMultiContacts | TransCutContacts read pair contains multiple read contacts. |
51+
| ChimericContacts | Two reads that are split from the same read, but not at the cut site; may be due to artificial chimeric synthesis events. |
52+
| NoContacts | Not a contact. |
53+
| MappedFragments | Total number of mapped fragments. |
54+
| DeduppedContacts | Total number of deduplicated contacts. |
55+
| ContactsDeduplicationRate | `(Input_contacts - dedup_contacts) / (input_contacts + 0.00001)` |
56+
| TotalCisContacts | Total number of cis contacts. |
57+
| TotalTransContacts | Total number of trans contacts. |
58+
| TotalMultiContacts | Total number of multi contacts (read pair contains multiple read contacts). |
59+
| CisContactsRatio | TotalCisContacts / number of mapped fragments. |
60+
| TransContactsRatio | TotalTransContacts / number of mapped fragments. |
61+
| MultiContactsRatio | TotalMultiContacts / number of mapped fragments. |
62+
| mCCCmC | Total methylated cytosine in the CCC context. |
63+
| mCGmC | Total methylated cytosine in the CG context. |
64+
| mCHmC | Total methylated cytosine in the CH context. |
65+
| mCCCCov | Total covered cytosine in the CCC context. |
66+
| mCGCov | Total covered cytosine in the CG context. |
67+
| mCHCov | Total covered cytosine in the CH context. |
68+
| mCCCFrac | Fraction of methylated cytosine (`mCCCmC`) divided by covered cytosine (`mCCCCov`) in the CCC context. |
69+
| mCGFrac | Fraction of methylated cytosine (`mCGmC`) divided by covered cytosine (`mCGCov`) in the CG context. |
70+
| mCHFrac | Fraction of methylated cytosine (`mCHmC`) divided by covered cytosine (`mCHCov`) in the CH context. |
71+
7172

7273

0 commit comments

Comments
 (0)