8
|
1 <tool id="macs2_bdgcmp" name="MACS2 bdgcmp" version="2.0.10.0">
|
|
2 <description>Deduct noise by comparing two signal tracks in bedGraph</description>
|
1
|
3 <expand macro="requirements" />
|
|
4 <expand macro="version_command" />
|
|
5 <macros>
|
|
6 <import>macs2_macros.xml</import>
|
|
7 </macros>
|
0
|
8 <command>
|
|
9 macs2 bdgcmp
|
|
10 -t $input_treatment_file
|
|
11 -c $input_control_file
|
|
12
|
|
13 -m $bdgcmp_options.bdgcmp_options_selector
|
|
14 #if $bdgcmp_options.bdgcmp_options_selector in ['FE', 'logFR', 'logLR']:
|
|
15 -p $pseudocount
|
|
16 #end if
|
|
17 --ofile $ofile
|
|
18
|
|
19 </command>
|
7
|
20 <expand macro="stdio" />
|
0
|
21 <inputs>
|
|
22 <!--experiment name and option of selecting paired or single end will always be present-->
|
|
23 <param name="experiment_name" type="text" value="MACS2 in Galaxy" size="50" label="Experiment Name"/>
|
|
24
|
|
25 <param name="input_treatment_file" type="data" format="bedgraph" label="Treatment bedGraph file" />
|
|
26 <param name="input_control_file" type="data" format="bedgraph" label="Control bedGraph file" />
|
|
27
|
|
28 <conditional name="bdgcmp_options">
|
|
29 <param name="bdgcmp_options_selector" type="select" label="Method to use while calculating a score in any bin by comparing treatment value and control value">
|
|
30 <option value="ppois">Poisson Pvalue (-log10 (pvalue) form) using control as lambda and treatment as observation</option>
|
|
31 <option value="qpois">q-value through a BH process for poisson pvalues</option>
|
|
32 <option value="subtract">subtraction from treatment</option>
|
|
33 <option value="logFE">log10 fold enrichment</option>
|
|
34 <option value="FE">linear scale fold enrichment</option>
|
|
35 <option value="logLR">log10 likelihood between ChIP-enriched model and open chromatin model</option>
|
|
36 <option value="slogLR">symmetric log10 likelihood between two ChIP-enrichment models and open chromatin model</option>
|
|
37 </param>
|
|
38 <when value="FE">
|
|
39 <param name="pseudocount" type="float" label="Set pseudocount" value="0.0" help="The count will be applied after normalization of sequencing depth. DEFAULT: 0.0, no pseudocount is applied."/>
|
|
40 </when>
|
|
41 <when value="logLR">
|
|
42 <param name="pseudocount" type="float" label="Set pseudocount" value="0.0" help="The count will be applied after normalization of sequencing depth. DEFAULT: 0.0, no pseudocount is applied."/>
|
|
43 </when>
|
|
44 <when value="logFE">
|
|
45 <param name="pseudocount" type="float" label="Set pseudocount" value="0.0" help="The count will be applied after normalization of sequencing depth. DEFAULT: 0.0, no pseudocount is applied."/>
|
|
46 </when>
|
|
47 </conditional>
|
|
48
|
|
49 </inputs>
|
|
50
|
|
51 <outputs>
|
|
52 <data name="ofile" format="bedgraph" label="${tool.name} on ${on_string}" />
|
|
53 </outputs>
|
|
54 <tests>
|
|
55 <!--none yet for macs2-->
|
|
56 </tests>
|
|
57 <help>
|
|
58 **What it does**
|
|
59
|
|
60 With the improvement of sequencing techniques, chromatin immunoprecipitation followed by high throughput sequencing (ChIP-Seq)
|
|
61 is getting popular to study genome-wide protein-DNA interactions. To address the lack of powerful ChIP-Seq analysis method, we present a novel algorithm, named Model-based Analysis of ChIP-Seq (MACS), for
|
|
62 identifying transcript factor binding sites. MACS captures the influence of genome complexity to evaluate the significance of enriched ChIP regions, and MACS improves the spatial resolution of
|
|
63 binding sites through combining the information of both sequencing tag position and orientation. MACS can be easily used for ChIP-Seq data alone, or with control sample with the increase of specificity.
|
|
64
|
|
65 View the original MACS2 documentation: https://github.com/taoliu/MACS/blob/master/README
|
|
66
|
|
67 ------
|
|
68
|
|
69 **Usage**
|
|
70
|
|
71 **Peak Calling**: Main MACS2 Function to Call peaks from alignment results.
|
|
72
|
|
73 **Compare .bdg files**: Deduct noise by comparing two signal tracks in bedGraph.
|
|
74
|
|
75
|
9
|
76 @citation@
|
0
|
77 </help>
|
|
78 </tool>
|