You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,6 @@
2
2
3
3
Welcome to the TwistMethylFlow documentation. This Nextflow pipeline is designed for the analysis of Twist NGS Methylation data, encompassing quality control, alignment, methylation calling, differential methylation analysis, and post-processing.
4
4
5
-

5
+

6
6
7
7
For a detailed overview, please refer to the [Overview](overview.md) section.
Copy file name to clipboardExpand all lines: docs/overview.md
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,14 +42,14 @@ TwistMethylFlow integrates various tools and custom scripts to provide a compreh
42
42
* generates a **Chord diagram** for top 10 results from the GO analysis.
43
43
44
44
45
-
# Read processing
45
+
### 1. Read processing
46
46
47
47
Read processing subworkflow includes - 
48
48
49
49
* FASTQC - for Quality check of samples
50
50
* TRIM Galore - adapter trimming
51
51
52
-
## FastQC
52
+
#### 1.1 FastQC
53
53
54
54
**FASTQC** is a widely used tool for assessing the quality of raw and processed sequencing data. It provides a comprehensive quality check, including metrics like per-base quality scores, GC content, and adapter contamination.
* Identifies frequently occurring sequences (e.g., adapters or contaminants).
84
84
85
85
86
-
## Trim Galore
86
+
#### 1.2 Trim Galore
87
87
88
88
**Trim Galore** is a versatile tool for trimming sequencing reads and removing adapter sequences. It’s particularly useful for preparing raw sequencing data for downstream applications like alignment or differential expression/methylation analysis. Trim Galore combines the functionalities of **Cutadapt** and **FastQC** for quality control and trimming.
Generate a summary report of alignment and methylation statistics.
197
197
198
198
**Command:**
@@ -207,7 +207,7 @@ bismark2report
207
207
* Duplicate rates.
208
208
* Methylation levels (CpG, CHG, CHH contexts).
209
209
210
-
# Alignment Quality Mapping
210
+
### 3. Alignment Quality Mapping
211
211
212
212
The main module for assessing alignment quality is `qualimap bamqc`.
213
213
@@ -242,7 +242,7 @@ qualimap bamqc \
242
242
* Distribution of mapping quality scores.
243
243
244
244
245
-
# QC Reporting
245
+
### 4. QC Reporting
246
246
247
247
_MultiQC_ is used for the QC reporting combining all results from the _FastQC, Trim galore, Bismark Alignment, Bismark Deduplication, Bismark summary report,_ and _Qualimap results._
248
248
@@ -251,13 +251,13 @@ _MultiQC_ is used for the QC reporting combining all results from the _FastQC, T
251
251
* Generates an interactive HTML report (`multiqc_report.html`) and a data file (`multiqc_data.json`).
252
252
* Output includes summary statistics, plots, and tool-specific metrics.
253
253
254
-
# Differential Methylation Analysis
254
+
### 5. Differential Methylation Analysis
255
255
To calculate the differential methylation from the input samples, two different methods can be used - 
256
256
257
257
*[EdgeR](#edger) (Default) or
258
258
*[MethylKit](#methylkit)
259
259
260
-
## EdgeR
260
+
#### 5.1 EdgeR
261
261
262
262
**edgeR** is a Bioconductor package primarily used for RNA-seq differential expression analysis but can also handle differential methylation analysis when paired with bisulfite sequencing data. This requires pre-processed methylation data, such as counts of methylated (`M`) and unmethylated (`U`) reads at each cytosine position or region of interest.
**MethylKit** is an R package designed for analyzing bisulfite sequencing data, particularly for differential methylation analysis. It supports genome-wide methylation data and is ideal for CpG, CHH, and CHG methylation studies.
Generates A) **Volcano Plot,** B) **MA Plot** and C) **Summary Statistics** from the Diffrential Methylation results.
307
307
@@ -313,7 +313,7 @@ Generates A) **Volcano Plot,** B) **MA Plot** and C) **Summary Statistics** from
313
313

314
314
315
315
316
-
# Gene Ontology Analysis
316
+
### 7. Gene Ontology Analysis
317
317
The pipeline has also a module to perform the Gene Ontology analysis from the top `n` corresponding genes from the differential methylation results (EdgeR/MethylKit) using the _clusterProfiler_ package.
318
318
319
319
The results generates a full table with all _Biological Processes_ and a _Chord diagram_ with top 10 functions identified in the analysis.
0 commit comments