Mercurial > repos > iuc > macs2
annotate macs2_filterdup.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_filterdup" name="MACS2 filterdup" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01"> |
33 | 2 <description>Remove duplicate reads at the same position</description> |
62
1ac88e46ee0f
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
iuc
parents:
61
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" /> |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
10 <command><![CDATA[ |
53
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 filterdup |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
13 -i '${ infile }' |
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
14 -o '${ outfile }' |
33 | 15 --format '${ infile.extension.upper() }' |
16 @effective_genome_size@ | |
17 @tag_size@ | |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
18 --pvalue '${ pvalue }' |
33 | 19 #if str( $keep_dup_options.keep_dup_options_selector ) == "user": |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
20 --keep-dup '${ keep_dup_options.user_keepdup }' |
33 | 21 #else |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
22 --keep-dup '${ keep_dup_options.keep_dup_options_selector }' |
33 | 23 #end if |
63
25e46cf1ee36
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e8307adcc6ee9245fa2bb9ecb6de1cbe008dc2c3"
iuc
parents:
62
diff
changeset
|
24 @buffer_size@ |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
25 ]]> |
33 | 26 </command> |
27 <inputs> | |
61
644444825ef9
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e90e79e18362561d0060d2c162f1938feebdbc29
iuc
parents:
53
diff
changeset
|
28 <param name="infile" type="data" format="bam,bed" label="Sequencing alignment file" /> |
33 | 29 <expand macro="conditional_effective_genome_size" /> |
30 <expand macro="tag_size" /> | |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
31 <param name="pvalue" type="text" value="1e-5" label="Pvalue cutoff for binomial distribution test" help="Default=1e-5 (--pvalue)" /> |
33 | 32 <expand macro="keep_duplicates" /> |
63
25e46cf1ee36
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e8307adcc6ee9245fa2bb9ecb6de1cbe008dc2c3"
iuc
parents:
62
diff
changeset
|
33 <expand macro="buffer_size"/> |
33 | 34 </inputs> |
35 <outputs> | |
36 <data name="outfile" format="bed" label="${tool.name} on ${on_string}" /> | |
37 </outputs> | |
38 <tests> | |
39 <test> | |
40 <param name="infile" value="ChIP_200K_w_dups.bed" ftype="bed"/> | |
41 <param name="pvalue" value="1e-5"/> | |
42 <param name="keep_dup_options_selector" value="auto"/> | |
43 <param name="effective_genome_size_options_selector" value="user_defined" /> | |
44 <param name="gsize" value="3300000000" /> | |
45 <output name="outfile" file="filterdup_on_ChIP_200K_w_dups.bed"/> | |
46 </test> | |
47 </tests> | |
48 <help> | |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
49 <![CDATA[ |
33 | 50 **What it does** |
51 | |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
52 This is **filterdup** utility from the MACS2_ Package. It removes duplicate reads and converts results to BED format. |
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
53 |
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
54 .. _MACS2: https://github.com/taoliu/MACS |
33 | 55 |
56 @citation@ | |
49
1b3f899ef044
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/macs2 commit e10f301c7f8c54a7d12df4e631527197baccf70b
iuc
parents:
36
diff
changeset
|
57 ]]> |
33 | 58 </help> |
59 <expand macro="citations" /> | |
60 </tool> |