Mercurial > repos > iuc > macs2
annotate macs2_bdgcmp.xml @ 63:25e46cf1ee36 draft default tip
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e8307adcc6ee9245fa2bb9ecb6de1cbe008dc2c3"
| author | iuc |
|---|---|
| date | Sat, 02 Apr 2022 21:36:50 +0000 |
| parents | 1ac88e46ee0f |
| children |
| rev | line source |
|---|---|
|
63
25e46cf1ee36
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e8307adcc6ee9245fa2bb9ecb6de1cbe008dc2c3"
iuc
parents:
62
diff
changeset
|
1 <tool id="macs2_bdgcmp" name="MACS2 bdgcmp" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01"> |
| 33 | 2 <description>Deduct noise by comparing two signal tracks in bedGraph</description> |
|
62
1ac88e46ee0f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
iuc
parents:
53
diff
changeset
|
3 <expand macro="bio_tools"/> |
| 33 | 4 <macros> |
| 5 <import>macs2_macros.xml</import> | |
| 6 </macros> | |
|
36
8c8ae1e19b10
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 344140b8df53b8b7024618bb04594607a045c03a
iuc
parents:
33
diff
changeset
|
7 <expand macro="requirements" /> |
|
8c8ae1e19b10
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 344140b8df53b8b7024618bb04594607a045c03a
iuc
parents:
33
diff
changeset
|
8 <expand macro="stdio" /> |
|
8c8ae1e19b10
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 344140b8df53b8b7024618bb04594607a045c03a
iuc
parents:
33
diff
changeset
|
9 <expand macro="version_command" /> |
|
53
8f6b37d29df5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 586ecaebf9e6020fac2674fbda368e293d1c9bc2
iuc
parents:
49
diff
changeset
|
10 <command><![CDATA[ |
|
8f6b37d29df5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 586ecaebf9e6020fac2674fbda368e293d1c9bc2
iuc
parents:
49
diff
changeset
|
11 @home_dir@ |
| 33 | 12 macs2 bdgcmp |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
13 -t '${ infile_treatment }' |
|
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
14 -c '${ infile_control }' |
| 33 | 15 |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
16 -m '${ bdgcmp_options.bdgcmp_options_selector }' |
| 33 | 17 #if str($bdgcmp_options.bdgcmp_options_selector) in ['FE', 'logFE', 'logLR']: |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
18 -p '${ bdgcmp_options.pseudocount }' |
| 33 | 19 #end if |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
20 -o '${ outfile }' |
|
53
8f6b37d29df5
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit 586ecaebf9e6020fac2674fbda368e293d1c9bc2
iuc
parents:
49
diff
changeset
|
21 ]]></command> |
| 33 | 22 <inputs> |
| 23 <param name="infile_treatment" type="data" format="bedgraph" label="Treatment bedGraph file" /> | |
| 24 <param name="infile_control" type="data" format="bedgraph" label="Control bedGraph file" /> | |
| 25 | |
| 26 <conditional name="bdgcmp_options"> | |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
27 <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" help="Available choices are: ppois, qpois, subtract, logFE, logLR, and slogLR. They represent Poisson Pvalue (-log10(pvalue) form) using control as lambda and treatment as observation, q-value through a BH process for poisson pvalues, subtraction from treatment, linear scale fold enrichment, log10 fold enrichment(need to set pseudocount), log10 likelihood between ChIP-enriched model and open chromatin model(need to set pseudocount), symmetric log10 likelihood between two ChIP-enrichment models, or maximum value between the two tracks. Default=ppois (--method)."> |
| 33 | 28 <option value="ppois" selected="true">Poisson pvalue (-log10) using control as lambda and treatment as observation (ppois)</option> |
| 29 <option value="qpois">q-value through a BH process for poisson pvalues (qpois)</option> | |
| 30 <option value="subtract">subtraction from treatment (subtract)</option> | |
| 31 <option value="logFE">log10 fold enrichment (logFE)</option> | |
| 32 <option value="FE">linear scale fold enrichment (FE)</option> | |
| 33 <option value="logLR">log10 likelihood between ChIP-enriched model and open chromatin model (logLR)</option> | |
| 34 <option value="slogLR">symmetric log10 likelihood between two ChIP-enrichment models (slogLR)</option> | |
| 35 </param> | |
| 36 <when value="FE"> | |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
37 <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)."/> |
| 33 | 38 </when> |
| 39 <when value="logLR"> | |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
40 <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)."/> |
| 33 | 41 </when> |
| 42 <when value="logFE"> | |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
43 <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)."/> |
| 33 | 44 </when> |
| 45 <when value="ppois"/> | |
| 46 <when value="qpois"/> | |
| 47 <when value="subtract"/> | |
| 48 <when value="slogLR"/> | |
| 49 </conditional> | |
| 50 </inputs> | |
| 51 <outputs> | |
| 52 <data name="outfile" format="bedgraph" label="${tool.name} on ${on_string}" /> | |
| 53 </outputs> | |
| 54 <tests> | |
| 55 <test> | |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
56 <param name="infile_control" value="bdgcmp_input_control.bdg" ftype="bedgraph"/> |
|
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
57 <param name="infile_treatment" value="bdgcmp_input_treatment.bdg" ftype="bedgraph"/> |
|
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
58 <param name="bdgcmp_options_selector" value="ppois"/> |
|
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
59 <output name="outfile" file="bdgcmp_output.bdg"/> |
| 33 | 60 </test> |
| 61 </tests> | |
| 62 <help> | |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
63 <![CDATA[ |
| 33 | 64 **What it does** |
| 65 | |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
66 This is **bdgcmp** utility from the MACS2_ Package. It is designed to deduct noise by comparing two signal tracks in bedGraph. |
| 33 | 67 |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
68 .. _MACS2: https://github.com/taoliu/MACS |
| 33 | 69 |
| 70 @citation@ | |
|
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
71 ]]> |
| 33 | 72 </help> |
| 73 <expand macro="citations" /> | |
| 74 </tool> |
