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: README.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,7 +2,7 @@
2
2
Large automated pipeline for running MeDeCom
3
3
4
4
# Using Decomp
5
-
*DecompPipeline* includes three major steps, all of them are extensively documented. A more detailed introduction into *DecompPipeline* can be found in the package vignette (https://github.com/lutsik/DecompPipeline/blob/master/vignettes/DecompPipeline.Rmd).
5
+
*DecompPipeline* includes three major steps, all of them are extensively documented. A more detailed introduction into *DecompPipeline* can be found in the package vignette (https://github.com/lutsik/DecompPipeline/blob/master/vignettes/DecompPipeline.md).
6
6
7
7
## CpG filtering
8
8
There are dedicated preprocessing steps for both array-based data sets (```prepare_data```) and sequencing-based data sets (```prepare_data_BS```).
Copy file name to clipboardExpand all lines: vignettes/DecompPipeline.Rmd
+14-15Lines changed: 14 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,17 @@
1
1
---
2
-
title: "DecompPipeline: Preprocessing of DNA Methylation data for MeDeCom"
2
+
title: 'DecompPipeline: Preprocessing of DNA Methylation data for MeDeCom'
3
3
author: "Michael Scherer, Pavlo Lutsik"
4
-
date: "`r Sys.Date()`"
4
+
date: '`r Sys.Date()`'
5
5
output:
6
-
rmarkdown::html_document:
7
-
mathjax: default
8
-
toc: true
9
-
number_sections: false
10
-
fig_width: 5
6
+
html_document:
11
7
fig_height: 5
12
-
vignette: >
13
-
%\VignetteIndexEntry{MeDeCom}
14
-
%\VignetteEngine{knitr::rmarkdown}
15
-
\usepackage[utf8]{inputenc}
8
+
fig_width: 5
9
+
keep_md: yes
10
+
mathjax: default
11
+
number_sections: no
12
+
toc: yes
13
+
pdf_document:
14
+
toc: yes
16
15
bibliography: biblio.bib
17
16
---
18
17
@@ -66,7 +65,7 @@ names(data.prep)
66
65
67
66
For bisulfite sequencing data sets, different filtering criteria apply. First, a absolute coverage threshold can be specified with ```MIN_COVERAGE``` to remove all sites with lower coverage. Similar to array-based data sets, upper and lower quantile of coverage can be omitted using ```MIN_COVG_QUANT``` and ```MAX_COVG_QUANT```. In complete accordance with array-based data sets, sites having missing values, located at annotated SNPs and on sex chromosomes can be removed.
@@ -96,7 +95,7 @@ Since performing MeDeCom on complete 450k/EPIC or BS datasets is still computati
96
95
97
96
For most of the options (except for **houseman2012**, **jaffe2014**, and **range**) the number of selected sites can be specified using the parameter ```N_MARKERS```. In contrast to CpG filtering, subset selection is independent of the data type (array-based and BS). The function returns a list, with each entry containing row indices of the selected sites:
After these preprocessing steps, you are ready to perfom the actual MeDeCom analysis using the ```start_medecom_analysis``` function. To store output in a format that is later on readable by FactorViz, you need to set the flag ```factorviz.outputs```. Further parameters are described in detail in the reference manual.
0 commit comments