annotate genrich.xml @ 2:8353f3cc03db draft default tip

"planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
author iuc
date Thu, 29 Aug 2019 10:42:38 -0400
parents db50f51a2952
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
1 <tool id="genrich" name="Genrich" version="0.5+galaxy2">
0
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
2 <description>Detecting sites of genomic enrichment</description>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
3 <requirements>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
4 <requirement type="package" version="0.5">genrich</requirement>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
5 <requirement type="package" version="1.9">samtools</requirement>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
6 </requirements>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
7
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
8 <version_command>Genrich --version</version_command>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
9
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
10 <command detect_errors="exit_code"><![CDATA[
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
11
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
12 #set $file_stderr = 'genrich_stderr'
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
13
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
14 Genrich
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
15
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
16 ###########
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
17 ## Input ##
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
18 ###########
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
19
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
20 ## Treatment File(s)
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
21 #if str($treatment.t_multi_select) == "Yes":
2
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
22 -t ${ ','.join( [ "'%s'" % $x for $x in $treatment.input_treatment_file] ) }
0
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
23 #else
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
24 -t '$treatment.input_treatment_file'
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
25 #end if
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
26
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
27 ## Control File(s)
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
28 #if str($control.c_select) == "Yes":
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
29 #if str($control.c_multiple.c_multi_select) == "Yes":
2
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
30 -c ${ ','.join( [ "'%s'" % $x for $x in $control.c_multiple.input_control_file] ) }
0
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
31 #else
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
32 -c '$control.c_multiple.input_control_file'
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
33 #end if
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
34 #end if
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
35
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
36 ####################
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
37 ## Filter Options ##
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
38 ####################
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
39
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
40 #if $filter_options.duplicates:
1
db50f51a2952 "planemo upload for repository https://github.com/jsh58/Genrich commit 85e0bb6eaeaf1b82357cb95abf6ebad6dd4ab492"
iuc
parents: 0
diff changeset
41 -r -R '${out_dups}'
0
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
42 #end if
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
43
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
44 #if $filter_options.exclude_chr:
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
45 -e '$filter_options.exclude_chr'
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
46 #end if
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
47
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
48 #if str($cond_exclude.exclude_select) == "Yes":
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
49 -E $cond_exclude.erf
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
50 #end if
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
51
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
52 -m $filter_options.min_mapq
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
53 -s $filter_options.alignment_score
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
54 $filter_options.unpaired
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
55
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
56 #if $filter_options.alignment_lengths:
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
57 -w $filter_options.alignment_lengths
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
58 #end if
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
59
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
60 $filter_options.alignment_lengths2
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
61
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
62 ##################
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
63 ## ATAC Options ##
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
64 ##################
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
65
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
66 $atac_options.atac
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
67 -d $atac_options.expand_sites
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
68
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
69 #########################
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
70 ## Peakcalling Options ##
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
71 #########################
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
72
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
73 -q $peakcalling_options.max_q
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
74
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
75 #if $peakcalling_options.max_p:
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
76 -p $peakcalling_options.max_p
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
77 #end if
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
78
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
79 -a $peakcalling_options.min_auc
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
80 -l $peakcalling_options.min_peak_length
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
81 -g $peakcalling_options.max_dist
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
82
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
83 ###################
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
84 ## Other Options ##
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
85 ###################
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
86
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
87 $other_options.skip_peak_calling
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
88 -v
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
89
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
90 ####################
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
91 ## Output Options ##
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
92 ####################
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
93
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
94 #if $output_options.bedgraph1:
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
95 -f '${out_bedgraph1}'
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
96 #end if
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
97
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
98 #if $output_options.bedgraph2:
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
99 -k '${out_bedgraph2}'
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
100 #end if
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
101
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
102 #if $output_options.bed:
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
103 -b '${out_bed}'
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
104 #end if
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
105
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
106 -o '${outfile}'
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
107
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
108 2>&1 > $file_stderr &&
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
109 exit_code_for_galaxy=\$? &&
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
110 cat $file_stderr 2>&1 &&
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
111 exit \$exit_code_for_galaxy
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
112
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
113 ]]></command>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
114 <inputs>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
115 <conditional name="treatment">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
116 <param name="t_multi_select" type="select" label="Are you pooling Treatment Files?" help="For more information, see Help section below" >
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
117 <option value="No" selected="True">No</option>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
118 <option value="Yes">Yes</option>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
119 </param>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
120 <when value="No" >
1
db50f51a2952 "planemo upload for repository https://github.com/jsh58/Genrich commit 85e0bb6eaeaf1b82357cb95abf6ebad6dd4ab492"
iuc
parents: 0
diff changeset
121 <param name="input_treatment_file" argument="-t" type="data" format="qname_sorted.bam" label="Treatment File"
db50f51a2952 "planemo upload for repository https://github.com/jsh58/Genrich commit 85e0bb6eaeaf1b82357cb95abf6ebad6dd4ab492"
iuc
parents: 0
diff changeset
122 help="This file should be a name-sorted BAM file. 'samtools sort' can do this with the 'name (-n)' parameter." />
0
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
123 </when>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
124 <when value="Yes">
1
db50f51a2952 "planemo upload for repository https://github.com/jsh58/Genrich commit 85e0bb6eaeaf1b82357cb95abf6ebad6dd4ab492"
iuc
parents: 0
diff changeset
125 <param name="input_treatment_file" argument="-t" type="data" format="qname_sorted.bam" multiple="true"
db50f51a2952 "planemo upload for repository https://github.com/jsh58/Genrich commit 85e0bb6eaeaf1b82357cb95abf6ebad6dd4ab492"
iuc
parents: 0
diff changeset
126 label="Treatment Files."
db50f51a2952 "planemo upload for repository https://github.com/jsh58/Genrich commit 85e0bb6eaeaf1b82357cb95abf6ebad6dd4ab492"
iuc
parents: 0
diff changeset
127 help="These files should be a name-sorted BAM file. 'samtools sort' can do this with the 'name (-n)' parameter." />
0
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
128 </when>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
129 </conditional>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
130
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
131 <conditional name="control">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
132 <param name="c_select" type="select" label="Do you have a Control File?" >
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
133 <option value="Yes">Yes</option>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
134 <option value="No" selected="True">No</option>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
135 </param>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
136 <when value="Yes">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
137 <conditional name="c_multiple">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
138 <param name="c_multi_select" type="select" label="Are you pooling Control Files?" help="For more information, see Help section below" >
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
139 <option value="No" selected="True">No</option>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
140 <option value="Yes">Yes</option>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
141 </param>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
142 <when value="No" >
1
db50f51a2952 "planemo upload for repository https://github.com/jsh58/Genrich commit 85e0bb6eaeaf1b82357cb95abf6ebad6dd4ab492"
iuc
parents: 0
diff changeset
143 <param name="input_control_file" argument="-c" type="data" format="qname_sorted.bam" label="Control File"
db50f51a2952 "planemo upload for repository https://github.com/jsh58/Genrich commit 85e0bb6eaeaf1b82357cb95abf6ebad6dd4ab492"
iuc
parents: 0
diff changeset
144 help="This file should be a name-sorted BAM file. 'samtools sort' can do this with the 'name (-n)' parameter." />
0
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
145 </when>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
146 <when value="Yes">
1
db50f51a2952 "planemo upload for repository https://github.com/jsh58/Genrich commit 85e0bb6eaeaf1b82357cb95abf6ebad6dd4ab492"
iuc
parents: 0
diff changeset
147 <param name="input_control_file" argument="-c" type="data" format="qname_sorted.bam" multiple="true" label="Control Files"
db50f51a2952 "planemo upload for repository https://github.com/jsh58/Genrich commit 85e0bb6eaeaf1b82357cb95abf6ebad6dd4ab492"
iuc
parents: 0
diff changeset
148 help="These files should be a name-sorted BAM file. 'samtools sort' can do this with the 'name (-n)' parameter." />
0
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
149 </when>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
150 </conditional>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
151 </when>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
152 <when value="No" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
153 </conditional>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
154
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
155 <!-- Filter Options -->
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
156 <conditional name="cond_exclude">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
157 <param name="exclude_select" type="select" label="Do you have a BED file of genomic regions to exclude?" help="Input BED file of genomic regions to exclude." >
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
158 <option value="No" selected="True">No</option>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
159 <option value="Yes">Yes</option>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
160 </param>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
161 <when value="No" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
162 <when value="Yes">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
163 <param name="erf" argument="-E" type="data" format="bed" label="BED File" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
164 </when>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
165 </conditional>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
166
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
167 <section name="filter_options" title="Filter Options">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
168 <param name="duplicates" argument="-r" type="boolean" value="False" truevalue="-r -R" falsevalue="" label="Remove PCR duplicates" help="In this process, it analyzes reads/fragments based on their alignments, in three separate groups (proper pairs, discordant pairs, and singletons), and removes those identified as duplicates from further analysis. One novel feature is that this evaluation takes into account reads/fragments with multiple alignments."/>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
169 <param name="exclude_chr" argument="-e" type="text" optional="True" label="Comma-separated list of chromosomes to exclude" help="All alignments to the given list of chromosomes (reference sequences) are excluded from peak-calling. More details can be found in the tool description.">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
170 <sanitizer>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
171 <valid initial="string.printable">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
172 <remove value="&apos;"/>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
173 </valid>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
174 </sanitizer>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
175 </param>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
176 <param name="min_mapq" argument="-m" type="integer" min="0" value="0" label="Minimum MAPQ to keep an alignment." help="All alignments with MAPQ less than the given value are eliminated. This is equivalent to filtering with samtools view -q. This option should not be used if the SAM/BAM lists multiple alignments for some reads/fragments. Instead, filtering should be accomplished via -s. (def. 0)" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
177 <param name="alignment_score" argument="-s" type="float" min="0.0" value="0.0" label="Keep sec alns with AS >= bestAS." help="Genrich considers all secondary alignments of multimapping reads, but, by default, it keeps only the alignments whose scores are equal to the best score for the read/fragment. Setting a value such as -s 20 causes Genrich also to keep secondary alignments whose scores are within 20 of the best. (def. 0)" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
178 <param name="unpaired" argument="-y" type="boolean" value="False" truevalue="-y" falsevalue="" label="Keep unpaired alignments." help="Unpaired alignments are kept, just as they appear in the SAM/BAM. (def. false)"/>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
179 <param name="alignment_lengths" argument="-w" type="integer" min="1" optional="True" value="" label="Keep unpaired alignments with a certain length." help="Unpaired alignments are kept, with their lengths changed to the given value (from their 5' ends). (def. not defined)" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
180 <param name="alignment_lengths2" argument="-x" type="boolean" value="False" truevalue="-x" falsevalue="" label="Keep unpaired alns, lengths changed to paired average." help="Unpaired alignments are kept, with their lengths changed to the average length of fragments inferred from properly paired alignments (excluding those aligning to skipped chromosomes [-e]). (def. not defined)"/>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
181 </section>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
182
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
183 <!-- ATAC Options -->
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
184 <section name="atac_options" title="ATAC Options">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
185 <param name="atac" argument="-j" type="boolean" value="False" truevalue="-j" falsevalue="" label="Use ATAC-seq mode." help="Use ATAC-seq mode (def. false)"/>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
186 <param name="expand_sites" argument="-d" type="integer" min="0" value="100" label="Expand cut sites." help="Expand cut sites to x bp (def. 100)" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
187 </section>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
188
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
189 <!-- Peakcalling Options -->
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
190 <section name="peakcalling_options" title="Peakcalling Options">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
191 <param name="max_q" argument="-q" type="float" min="0.0" max="1.0" value="0.05" label="Maximum q-value." help="Maximum q-value (FDR-adjusted p-value). These parameters establish the statistical threshold below which a base is considered significantly enriched in the experimental sample(s) vs. the control/background. The significance value is automatically converted to a -log10 scale by Genrich. (def. 0.05)" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
192 <param name="max_p" argument="-p" type="float" min="0" max="1.0" optional="True" value="" label="Maximum p-value." help="When -p is selected, q-values are not calculated (reported as -1). (def. turned off)" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
193 <param name="min_auc" argument="-a" type="float" min="0" value="20.0" label="Minimum AUC for a peak." help="Minimum AUC for a peak. (def. 20.0)" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
194 <param name="min_peak_length" argument="-l" type="integer" min="0" value="0" label="Minimum length of a peak." help="With this option, any potential peak whose length is below the specified value is discarded, regardless of its significance. The default of 0 means that no peaks are eliminated on this basis. (def. 0)" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
195 <param name="max_dist" argument="-g" type="integer" min="0" value="100" label="Maximum distance between signif. sites." help="This parameter sets the maximum distance between sites that achieve significance in order for them to be linked together into the same potential peak. (def. 100)" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
196 </section>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
197
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
198 <!-- Other Options -->
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
199 <section name="other_options" title="Other Options">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
200 <param name="skip_peak_calling" argument="-X" type="boolean" value="False" truevalue="-X" falsevalue="" label="Skip peak-calling." help="This is a convenience option for those who are unsure of the peak-calling parameters but do not want to run the full analysis multiple times. Genrich interprets the alignment files (including identifying PCR duplicates) and produces intermediate log files, but does not perform the peak-calling step."/>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
201 </section>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
202
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
203 <!-- Output Options -->
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
204 <section name="output_options" title="Output Options">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
205 <param name="bedgraph1" argument="-f" type="boolean" value="False" label="Bedgraph-ish p/q Values" help="Output bedgraph-ish file for p/q values."/>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
206 <param name="bedgraph2" argument="-k" type="boolean" value="False" label="Bedgraph-ish Pileups" help="Output bedgraph-ish file for pileups and p-values."/>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
207 <param name="bed" argument="-b" type="boolean" value="False" label="Bed File" help="Output BED file for reads/fragments/intervals."/>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
208 </section>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
209 </inputs>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
210
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
211
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
212 <outputs>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
213 <data name="outfile" format="encodepeak" label="${tool.name} on ${on_string}"/>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
214
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
215 <data name="out_bedgraph1" format="bedgraph" from_work_dir="*.bedgraph" label="${tool.name} on ${on_string}: Bedgraph p/q">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
216 <filter>(output_options['bedgraph1'] is True)</filter>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
217 </data>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
218 <data name="out_bedgraph2" format="bedgraph" from_work_dir="*.bedgraph" label="${tool.name} on ${on_string}: Bedgraph Pileups">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
219 <filter>(output_options['bedgraph2'] is True)</filter>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
220 </data>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
221 <data name="out_bed" format="bed" from_work_dir="*.bed" label="${tool.name} on ${on_string}: Bed reads/fragments/intervals">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
222 <filter>(output_options['bed'] is True)</filter>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
223 </data>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
224 <data name="out_dups" format="txt" from_work_dir="*.txt" label="${tool.name} on ${on_string}: PCR duplicates">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
225 <filter>(filter_options['duplicates'] is True)</filter>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
226 </data>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
227 </outputs>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
228 <tests>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
229 <!-- ATAC Test Data -->
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
230 <test expect_num_outputs="4">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
231 <param name="input_treatment_file" ftype="bam" value="atac_test.bam" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
232 <param name="atac" value="True" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
233 <param name="bedgraph1" value="True" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
234 <param name="bedgraph2" value="True" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
235 <param name="bed" value="True" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
236 <output name="outfile" ftype="encodepeak" file="atac_out.encodepeak" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
237 <output name="out_bedgraph1" ftype="bedgraph" file="atac_out2.bedgraph" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
238 <output name="out_bedgraph2" ftype="bedgraph" file="atac_out3.bedgraph" compare="contains" lines_diff="1" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
239 <output name="out_bed" ftype="bed" file="atac_out4.bed" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
240 </test>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
241 <!-- ChIP Test Data with Control-->
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
242 <test expect_num_outputs="4">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
243 <param name="input_treatment_file" ftype="bam" value="CTCF_PE_ChIP_chr22.bam" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
244 <param name="input_control_file" ftype="bam" value="CTCF_PE_CTRL_chr22.bam" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
245 <param name="c_select" value="Yes" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
246 <param name="bedgraph1" value="True" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
247 <param name="bedgraph2" value="True" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
248 <param name="bed" value="True" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
249 <output name="outfile" ftype="encodepeak" file="CTCF.encodepeak" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
250 <output name="out_bedgraph1" ftype="bedgraph" file="CTCF1.bedgraph" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
251 <output name="out_bedgraph2" ftype="bedgraph" file="CTCF2.bedgraph" compare="contains" lines_diff="1" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
252 <output name="out_bed" ftype="bed" file="CTCF.bed" />
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
253 </test>
2
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
254 <!-- ChIP Test Data for Pooled Data (Replicates)-->
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
255 <test expect_num_outputs="4">
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
256 <param name="input_treatment_file" ftype="bam" value="CTCF_PE_ChIP_chr22.bam,CTCF_PE_ChIP_chr22_2.bam" />
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
257 <param name="input_control_file" ftype="bam" value="CTCF_PE_CTRL_chr22.bam,CTCF_PE_CTRL_chr22_2.bam" />
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
258 <param name="c_select" value="Yes" />
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
259 <param name="t_multi_select" value="Yes" />
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
260 <param name="c_multi_select" value="Yes" />
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
261 <param name="bedgraph1" value="True" />
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
262 <param name="bedgraph2" value="True" />
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
263 <param name="bed" value="True" />
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
264 <output name="outfile" ftype="encodepeak" file="Pool.encodepeak" />
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
265 <output name="out_bedgraph1" ftype="bedgraph" file="Pool1.bedgraph" />
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
266 <output name="out_bedgraph2" ftype="bedgraph" file="Pool2.bedgraph" compare="contains" lines_diff="2" />
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
267 <output name="out_bed" ftype="bed" file="Pool.bed" />
8353f3cc03db "planemo upload for repository https://github.com/jsh58/Genrich commit 62a6ec655d7743ce084e45ba02b495e8bd2dc06c"
iuc
parents: 1
diff changeset
268 </test>
0
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
269 </tests>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
270 <help><![CDATA[
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
271
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
272 .. class:: infomark
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
273
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
274 **What it does**
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
275
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
276 -------------------
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
277
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
278 **Genrich** Genrich is a peak-caller for genomic enrichment assays (e.g. ChIP-seq, ATAC-seq). It analyzes alignment files generated following the assay and produces a file detailing peaks of significant enrichment.
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
279
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
280 ATAC-seq is a method for assessing genomic regions of open chromatin. Since only the ends of the DNA fragments indicate where the transposase enzyme was able to insert into the chromatin, it may not be optimal to interpret alignments. Genrich has an alternative analysis mode for ATAC-seq in which it creates intervals centered on transposase cut sites. The remainder of the peak-calling process (calculating pileups and significance values) is identical to the default analysis mode. Note that the interval lengths (not the fragment lengths) are used to sum the total sequence information for the calculation of control/background pileup values.
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
281
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
282 -------------------
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
283
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
284 **Inputs**
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
285
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
286 -------------------
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
287
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
288 Genrich analyzes alignment files in SAM/BAM format. SAM files must have a header.
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
289 SAM/BAM files for multiple replicates can be specified, comma-separated (or space-separated, in quotes).
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
290 Multiple SAM/BAM files for a single replicate should be combined in advance via samtools merge.
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
291 The SAM/BAM files must be sorted by queryname (via samtools sort -n).
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
292
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
293
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
294 -----------
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
295
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
296 **Outputs**
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
297
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
298 -----------
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
299
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
300 As indicated, the output file is in ENCODE narrowPeak format. Here are details of the fields:
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
301 * 1. chrom Name of the chromosome
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
302 * 2. chromStart Starting position of the peak (0-based)
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
303 * 3. chromEnd Ending position of the peak (not inclusive)
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
304 * 4. name peak_N, where N is the 0-based count
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
305 * 5. score Average AUC (total AUC / bp) × 1000, rounded to the nearest int (max. 1000)
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
306 * 6. strand . (no orientation)
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
307 * 7. signalValue Total area under the curve (AUC)
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
308 * 8. pValue Summit -log10(p-value)
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
309 * 9. qValue Summit -log10(q-value), or -1 if not available (e.g. with -p)
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
310 * 10. peak Summit position (0-based offset from chromStart): the midpoint of the peak interval with the highest significance (the longest interval in case of ties)
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
311
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
312 Example:
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
313 chr1 894446 894988 peak_10 402 . 217.824936 4.344683 1.946031 317
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
314 chr1 895834 896167 peak_11 343 . 114.331093 4.344683 1.946031 90
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
315
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
316 Optional files
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
317
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
318 -c Input SAM/BAM file(s) for control sample(s)
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
319
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
320 Alignment files for control samples (e.g. input DNA) can be specified, although this is not strictly required.
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
321 SAM/BAM files for multiple replicates can be listed, comma-separated (or space-separated, in quotes) and in the same order as the experimental files. Missing control files should be indicated with null.
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
322
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
323 -f Output bedgraph-ish file for p/q values
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
324
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
325 With a single replicate, this log file lists experimental/control pileup values, p- and q-values, and significance (*) for each interval.
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
326
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
327 Example:
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
328 chr1 894435 894436 33.000000 2.477916 3.183460 1.208321
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
329 chr1 894436 894442 34.000000 2.477916 3.231466 1.241843
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
330 chr1 894442 894446 35.000000 2.477916 3.278469 1.274561
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
331 chr1 894446 894447 36.000000 2.477916 3.324516 1.306471 *
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
332 chr1 894447 894450 39.000000 2.477916 3.457329 1.398035 *
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
333 chr1 894450 894451 40.000000 2.477916 3.499948 1.427253 *
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
334 chr1 894451 894460 41.000000 2.477916 3.541798 1.455938 *
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
335
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
336 With multiple replicates, this log file lists p-values of each replicate, combined p-value, q-value, and significance for each interval.
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
337 Note that this file (as well as the -k file, below) is called "bedgraph-ish" because it contains multiple dataValue fields, which isn't strictly allowed in the bedGraph format. However, a simple application of awk can produce the desired bedgraph files for visualization purposes (see this awk reference for a guide to printing specific fields of input records).
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
338 When peak-calling is skipped (-X), the significance column is not produced.
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
339
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
340 -k Output bedgraph-ish file for pileups and p-values
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
341
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
342 For each replicate, sequentially, this file lists a header line (# experimental file: <name>; control file: <name>), followed by experimental/control pileups and a p-value for each interval. This is the way to examine pileup values with multiple replicates, since the -f log file does not supply them in that case.
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
343
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
344 -b Output BED file for reads/fragments/intervals
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
345
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
346 This is an unsorted BED file of the reads/fragments/intervals analyzed. The 4th column gives the read name, number of valid alignments, 'E'xperimental or 'C'ontrol, and sample number (0-based), e.g. SRR5427886.59_2_E_0.
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
347
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
348 -R Output file for PCR duplicates (only with -r)
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
349
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
350 This log file lists the header of each read/fragment classified as a PCR duplicate, followed by the alignment, the header of the read/fragment it matched, and the alignment type.
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
351
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
352 Example:
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
353 SRR5427886.5958 chr4:185201876-185201975 SRR5427886.4688 paired
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
354 SRR5427886.1826 chr12:34372610,+;chr1:91852878,- SRR5427886.2040 discordant
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
355 SRR5427886.10866 chr14:53438632,+ SRR5427886.4746 single
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
356
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
357 The duplicates from multiple input files are separated by a comment line listing the next filename, such as # experimental file #0: SRR5427886.bam.
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
358 This file can be used to filter the original SAM/BAM file, using a simple script such as getReads.py, for example.
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
359
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
360
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
361 --------------------
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
362
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
363 **More Information**
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
364
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
365 --------------------
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
366
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
367 See the excellent `Genrich documentation`_
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
368
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
369 .. _`Genrich documentation`: https://github.com/jsh58/Genrich
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
370
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
371
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
372 --------------------
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
373
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
374 **Galaxy Wrapper Development**
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
375
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
376 --------------------
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
377
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
378 Author: Florian Heyl <heylf@informatik.uni-freiburg.de>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
379
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
380
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
381 ]]></help>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
382 <citations>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
383 <citation type="bibtex">
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
384 @misc{genrich,
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
385 title = {Genrich},
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
386 url = {https://github.com/jsh58/Genrich},
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
387 urldate = {2019-07-15},
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
388 author = {John M. Gaspar},
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
389 year = {2018},
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
390 }
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
391 </citation>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
392 </citations>
a41d96fc0b20 planemo upload for repository https://github.com/jsh58/Genrich commit 38aa99ebf650c22a1c4965f6f008882aea7033ba
iuc
parents:
diff changeset
393 </tool>