Mercurial > repos > iuc > macs2
comparison macs2_filterdup.xml @ 20:f63ccb331626 draft
Uploaded
author | iuc |
---|---|
date | Thu, 01 May 2014 17:07:46 -0400 |
parents | 05aca18fd8dc |
children | 59845dc3331f |
comparison
equal
deleted
inserted
replaced
19:05aca18fd8dc | 20:f63ccb331626 |
---|---|
25 <param name="infile" type="data" format="sam,bam,bed" label="Sequencing alignment file" /> | 25 <param name="infile" type="data" format="sam,bam,bed" label="Sequencing alignment file" /> |
26 <expand macro="conditional_effective_genome_size" /> | 26 <expand macro="conditional_effective_genome_size" /> |
27 <expand macro="tag_size" /> | 27 <expand macro="tag_size" /> |
28 <param name="pvalue" type="text" value="1e-5" label="Pvalue cutoff for binomial distribution test" help="default: 1e-5 (--pvalue)" /> | 28 <param name="pvalue" type="text" value="1e-5" label="Pvalue cutoff for binomial distribution test" help="default: 1e-5 (--pvalue)" /> |
29 | 29 |
30 <conditional name="keep_dup_options"> | 30 <expand macro="keep_duplicates" /> |
31 <param name="keep_dup_options_selector" type="select" label="controlling behavior of duplicate tags at the exact same location" | 31 |
32 help="It controls the 'macs2 filterdup' behavior towards duplicate tags at the exact same location (the same coordination and the same strand. The default 'auto') option makes 'macs2 filterdup' calculate the maximum tags at the exact same location based on binomal distribution using given -p as pvalue cutoff; and the 'all' option keeps every tags (useful if you only want to convert formats). If an integer is given, at most this number of tags will be kept at the same location. Default: auto"> | |
33 <option value="auto" selected="true">auto</option> | |
34 <option value="all">all</option> | |
35 <option value="user">user defined</option> | |
36 </param> | |
37 <when value="user"> | |
38 <param name="user_keepdup" type="integer" value="10" label="Keep at most this number of tags"/> | |
39 </when> | |
40 <when value="all"/> | |
41 <when value="auto"/> | |
42 </conditional> | |
43 </inputs> | 32 </inputs> |
44 <outputs> | 33 <outputs> |
45 <data name="outfile" format="bed" label="${tool.name} on ${on_string}" /> | 34 <data name="outfile" format="bed" label="${tool.name} on ${on_string}" /> |
46 </outputs> | 35 </outputs> |
47 <tests> | 36 <tests> |