annotate moabs.xml @ 1:8c8cc81b34cd draft

"planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
author iuc
date Sat, 11 Apr 2020 04:14:34 -0400
parents 26d7ec4af119
children 214874e24cd6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
1 <tool id="moabs" name="MOABS" profile="16.04" version="@VERSION@+galaxy1">
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
2 <description>MOdel based Analysis of Bisulfite Sequencing data</description>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
3 <macros>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
4 <import>macros.xml</import>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
5 </macros>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
6 <expand macro="requirements"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
7 <command detect_errors="exit_code">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
8 <![CDATA[
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
9 #if str( $mcomp_advanced.doComp.compare_selector ) == "0":
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
10 cp -f '$mcomp_advanced.doComp.compFile' comp.g1.vs.g2.txt &&
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
11 #end if
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
12 moabs -v 1 --def MMAP.p="\${GALAXY_SLOTS:-4}" --def MCALL.p="\${GALAXY_SLOTS:-4}" --def MCOMP.p="\${GALAXY_SLOTS:-4}" --cf '$cfg_file' &&
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
13 #if "1" in $output_selector:
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
14 cp -f dmc_M2_g1.G.bed_vs_g2.G.bed.txt '$output1' &&
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
15 #end if
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
16 #if "2" in $output_selector:
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
17 cp -f dmr_M2_g1.G.bed_vs_g2.G.bed.txt '$output2' &&
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
18 #end if
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
19 #if "3" in $output_selector:
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
20 cp -f comp.g1.vs.g2.txt '$output3' &&
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
21 #end if
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
22 echo Done
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
23 ]]>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
24 </command>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
25 <configfiles>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
26 <configfile name="cfg_file">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
27 #if str( $reference_source.reference_source_selector ) == "history":
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
28 #set $reference_fasta_filename = $reference_source.ref_file
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
29 #else:
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
30 #set $reference_fasta_filename = $reference_source.ref_file.fields.path
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
31 #end if
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
32 [INPUT]
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
33 #for $i, $s in enumerate( $g1_fastq )
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
34 #if str( $s.fastq_input.fastq_input_selector ) == "paired":
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
35 s1_r${i+1}_1='$s.fastq_input.fastq_input1'
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
36 s1_r${i+1}_2='$s.fastq_input.fastq_input2'
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
37 #elif str( $s.fastq_input.fastq_input_selector ) == "paired_collection":
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
38 s1_r${i+1}_1='$s.fastq_input.fastq_input1.forward'
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
39 s1_r${i+1}_2='$s.fastq_input.fastq_input1.reverse'
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
40 #else:
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
41 s1_r${i+1}='$s.fastq_input.fastq_input1'
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
42 #end if
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
43 #end for
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
44
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
45 #for $i, $s in enumerate( $g2_fastq )
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
46 #if str( $s.fastq_input.fastq_input_selector ) == "paired":
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
47 s2_r${i+1}_1='$s.fastq_input.fastq_input1'
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
48 s2_r${i+1}_2='$s.fastq_input.fastq_input2'
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
49 #elif str( $s.fastq_input.fastq_input_selector ) == "paired_collection":
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
50 s2_r${i+1}_1='$s.fastq_input.fastq_input1.forward'
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
51 s2_r${i+1}_2='$s.fastq_input.fastq_input1.reverse'
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
52 #else:
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
53 s2_r${i+1}='$s.fastq_input.fastq_input1'
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
54 #end if
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
55 #end for
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
56
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
57 [TASK]
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
58 Program=MMAP
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
59 Label=g1,g2
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
60 Parallel=NONE
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
61
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
62 [MMAP]
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
63 Path=bsmap
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
64 d='${reference_fasta_filename}'
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
65 #if str( $bsmap_advanced.bsmap_mismatch.bsmap_mismatch_selector ) != "0":
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
66 v=$bsmap_advanced.bsmap_mismatch.v
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
67 #end if
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
68 s=$bsmap_advanced.s
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
69 w=$bsmap_advanced.w
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
70 #if $bsmap_advanced.D:
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
71 D=$bsmap_advanced.D
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
72 #end if
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
73 S=$bsmap_advanced.S
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
74 n=$bsmap_advanced.n
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
75 q=$bsmap_advanced.q
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
76 z=$bsmap_advanced.z
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
77 f=$bsmap_advanced.f
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
78 #if $bsmap_advanced.A:
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
79 A=$bsmap_advanced.A
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
80 #end if
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
81 r=$bsmap_advanced.r
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
82 #if str( $bsmap_advanced.R ) == "1":
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
83 R=''
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
84 #end if
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
85 #if str( $bsmap_advanced.u ) == "1":
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
86 u=''
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
87 #end if
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
88 m=$bsmap_advanced.m
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
89 x=$bsmap_advanced.x
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
90
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
91 [MCALL]
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
92 Path=mcall
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
93 r='${reference_fasta_filename}'
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
94 cytosineMinScore=$mcall_advanced.cytosineMinScore
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
95 nextBaseMinScore=$mcall_advanced.nextBaseMinScore
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
96 qualityScoreBase=$mcall_advanced.qualityScoreBase
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
97 trimWGBSEndRepairPE2Seq=$mcall_advanced.trimWGBSEndRepairPE2Seq
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
98 trimWGBSEndRepairPE1Seq=$mcall_advanced.trimWGBSEndRepairPE1Seq
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
99 processPEOverlapSeq=$mcall_advanced.processPEOverlapSeq
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
100 trimRRBSEndRepairSeq=$mcall_advanced.trimRRBSEndRepairSeq
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
101 minFragSize=$mcall_advanced.minFragSize
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
102 minMMFragSize=$mcall_advanced.minMMFragSize
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
103 reportCpX=$mcall_advanced.reportCpX
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
104
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
105 [MCOMP]
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
106 Path=mcomp
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
107 doComp=$mcomp_advanced.doComp.compare_selector
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
108 d=$mcomp_advanced.d
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
109 filterCredibleDif=$mcomp_advanced.filterCredibleDif
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
110 pFetDmc=$mcomp_advanced.pFetDmc
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
111 pFetDmr=$mcomp_advanced.pFetDmr
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
112 minNominalDif=$mcomp_advanced.minNominalDif
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
113 minCredibleDif=$mcomp_advanced.minCredibleDif
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
114 minDmcsInDmr=$mcomp_advanced.minDmcsInDmr
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
115 maxDistConsDmcs=$mcomp_advanced.maxDistConsDmcs
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
116 </configfile>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
117 </configfiles>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
118
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
119 <inputs>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
120 <conditional name="reference_source">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
121 <param name="reference_source_selector" type="select" label="Will you select a reference genome from your history or use a cache FASTA?" help="Cached FASTA">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
122 <option value="cached">Use a cached genome FASTA</option>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
123 <option value="history">Use a genome FASTA from history</option>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
124 </param>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
125 <when value="cached">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
126 <param name="ref_file" type="select" label="Using reference genome" help="Select genome from the list">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
127 <options from_data_table="all_fasta">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
128 <filter type="sort_by" column="2" />
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
129 <validator type="no_options" message="No genome FASTA are available" />
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
130 </options>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
131 </param>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
132 </when>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
133 <when value="history">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
134 <param name="ref_file" type="data" format="fasta" label="Use the following dataset as the reference sequence" help="You can upload a FASTA sequence to the history and use it as reference" />
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
135 </when>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
136 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
137 <repeat name="g1_fastq" title="Group1: fastq files" min="1">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
138 <conditional name="fastq_input">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
139 <param name="fastq_input_selector" type="select" label="Single or Paired-end reads" help="Select between paired and single end data">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
140 <option value="single">Single</option>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
141 <option value="paired">Paired</option>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
142 <option value="paired_collection">Paired Collection</option>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
143 </param>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
144 <when value="paired">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
145 <param name="fastq_input1" type="data" format="fastqsanger,fastqsanger.gz" label="Select first set of reads" help="Specify dataset with forward reads"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
146 <param name="fastq_input2" type="data" format="fastqsanger,fastqsanger.gz" label="Select second set of reads" help="Specify dataset with reverse reads"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
147 </when>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
148 <when value="single">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
149 <param name="fastq_input1" type="data" format="fastqsanger,fastqsanger.gz" label="Select fastq dataset" help="Specify dataset with single reads"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
150 </when>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
151 <when value="paired_collection">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
152 <param name="fastq_input1" format="fastqsanger,fastqsanger.gz" type="data_collection" collection_type="paired" label="Select a paired collection" help="See help section for an explanation of dataset collections"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
153 </when>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
154 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
155 </repeat>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
156 <repeat name="g2_fastq" title="Group2: fastq files" min="1">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
157 <conditional name="fastq_input">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
158 <param name="fastq_input_selector" type="select" label="Single or Paired-end reads" help="Select between paired and single end data">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
159 <option value="single">Single</option>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
160 <option value="paired">Paired</option>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
161 <option value="paired_collection">Paired Collection</option>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
162 </param>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
163 <when value="paired">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
164 <param name="fastq_input1" type="data" format="fastqsanger,fastqsanger.gz" label="Select first set of reads" help="Specify dataset with forward reads"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
165 <param name="fastq_input2" type="data" format="fastqsanger,fastqsanger.gz" label="Select second set of reads" help="Specify dataset with reverse reads"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
166 </when>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
167 <when value="single">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
168 <param name="fastq_input1" type="data" format="fastqsanger,fastqsanger.gz" label="Select fastq dataset" help="Specify dataset with single reads"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
169 </when>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
170 <when value="paired_collection">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
171 <param name="fastq_input1" format="fastqsanger,fastqsanger.gz" type="data_collection" collection_type="paired" label="Select a paired collection" help="See help section for an explanation of dataset collections"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
172 </when>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
173 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
174 </repeat>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
175 <section name="bsmap_advanced" title="Advanced options for BSMAP" expanded="False">
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
176 <param argument="-s" type="integer" value="16" min="8" max="16" label="Seed size" help="The seed size for the HASH table. BSMAP implements a seeding algorithm by indexing reference for all possible k-mers, i.e. seeds. As for the seed size, i.e. the length of k-mers, 16 is suggested for the WGBS mode, and 12 is suggested for the RRBS mode. Min=8, max=16."/>
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
177 <conditional name="bsmap_mismatch">
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
178 <param name="bsmap_mismatch_selector" type="select" label="Set the mismatch rate or number?" help="When `Do not set` selected, BSMAP will allow a default suggested 8% mismatch rate. Otherwise, a customized mismatch can be controlled by specifying a mismatch rate or a mismatch number.">
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
179 <option value="0" selected="true">Do not set</option>
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
180 <option value="1">Set the mismatch rate</option>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
181 <option value="2">Set the mismatch number</option>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
182 </param>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
183 <when value="1">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
184 <param argument="-v" type="float" value="0.08" min="0" max="1" label="Mismatch rate" help="The mismatch rate w.r.t to the read length"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
185 </when>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
186 <when value="2">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
187 <param argument="-v" type="integer" value="3" min="0" label="Mismatch number" help="The maximum number of mismatches allowed on a read"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
188 </when>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
189 </conditional>
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
190 <param argument="-w" type="integer" value="1000" min="0" max="1000" label="Maximum number of equal best hits to count" help="Maximum number of equal best hits to count. When multiple mapping occurs for a read, it should control the number of records to report. Default: 1000."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
191 <param argument="-D" type="text" label="Restriction enzyme digestion sites for RRBS mode" help="For RRBS data, this option activates RRBS mapping mode and set restriction enzyme digestion sites. Digestion position marked by '-', example: -D C-CGG for MspI digestion. default: none (WGBS mode).">
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
192 <validator type="regex" message="Use A/T/C/G/- for restriction enzyme digestion sites">^[ATCG-]*$</validator>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
193 </param>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
194 <param argument="-S" type="integer" value="0" label="Random seed" help="Seed for random number generation used in selecting multiple hits. Other seed values generate pseudo random number based on read index number, to allow reproducible mapping results. Default=0 (get seed from system clock, mapping results not resproducible)."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
195 <param argument="-n" type="boolean" truevalue="1" falsevalue="0" checked="true" label="Mapping to four strands?" help="Yes: map SE or PE reads to all 4 strands, i.e. ++, +-, -+, --; No: only map to 2 forward strands, i.e. BSW(++) and BSC(-+). For example, for a traditional library construction, two forward strands, ++ and -+, are sufficient for alignments. However, a Pico library construction needs all four-strand mappings."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
196 <param argument="-q" type="integer" value="0" min="0" max="40" label="Quality threshold in trimming" help="The quality threshold to trim read bases. To obtain an accurate mapping, low-quality bases should be skipped beforehand. Min=0, max=40. Default=0 (no trim)."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
197 <param argument="-z" type="select" label="Base quality" help="Base quality for sequencing reads, Illumina or Sanger.">
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
198 <option value="33" selected="true">Sanger</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
199 <option value="64">Illumina</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
200 </param>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
201 <param argument="-f" type="integer" value="5" min="0" label="Maximum number of Ns in a read to filter out" help="To filter out low-quality reads containing >n Ns. Default=5."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
202 <param argument="-A" type="text" label="3' adapter sequence to trim" help="To trim 3' adapter sequence. Default: none (no trim).">
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
203 <validator type="regex" message="Use A/T/C/G for adapter sequences, and the length should be greater equal to 12 bases.">^[ATCG]{12,}$|^$</validator>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
204 </param>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
205 <param argument="-r" type="select" label="How to report repeat hits" help="0=none(unique hit/pair); 1=random one; 2=all(slow). When input reads coverage is high, it is suggested to report only unique hits (r=0). For a low-depth library, a random one from multiple mappings (r=1), or all multiple mappings (r=2) can be specified to increase read coverage, yet be cautious about bias caused by ambiguous mappings.">
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
206 <option value="0" selected="true">0</option>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
207 <option value="1">1</option>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
208 <option value="2">2</option>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
209 </param>
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
210 <param argument="-R" type="boolean" truevalue="1" falsevalue="0" checked="false" label="Print corresponding reference sequences?" help="Yes: print corresponding reference sequences in mapping records, a `RS:` tag will be added in record attributes; No: do not print reference sequences."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
211 <param argument="-u" type="boolean" truevalue="1" falsevalue="0" checked="false" label="Report unmapped reads?" help="Yes: print unmapped reads; No: do not print unmapped reads."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
212 <param argument="-m" type="integer" value="28" min="0" label="Minimal insert size allowed in paired-end mapping" help="For paired-end reads, the minimal insert size allowed in two end mapping. Default=28."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
213 <param argument="-x" type="integer" value="1000" min="0" label="Maximal insert size allowed in paired-end mapping" help="For paired-end reads, the maximal insert size allowed in two end mapping. Default=1000."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
214 </section>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
215 <section name="mcall_advanced" title="Advanced options for MCALL" expanded="False">
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
216 <param argument="--cytosineMinScore" type="integer" value="20" min="0" label="Threshold for cytosine quality score" help="Threshold for cytosine quality score. Discard the base if threshold is not reached. Default=20."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
217 <param argument="--nextBaseMinScore" type="integer" value="3" min="-1" label="Threshold for the next base quality score" help="Threshold for the next base quality score. Possible values: -1 makes the program not to check if next base matches reference; any positive integer or zero makes the program to check if next base matches reference and reaches this score threshold; default=3, i.e., better than 'B' or '#'."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
218 <param argument="--qualityScoreBase" type="select" label="Specify the quality score system" help="Sanger, Solexa, or Illumina. See wiki FASTQ_format for details. Default: auto-detection.">
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
219 <option value="0" selected="true">Auto-detection</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
220 <option value="33">Sanger</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
221 <option value="59">Solexa</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
222 <option value="64">Illumina</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
223 </param>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
224 <param argument="--trimWGBSEndRepairPE2Seq" type="integer" value="3" min="0" label="Bases to trim end-repair sequences from +-/--" help="To trim end-repair sequence from begin of +-/-- reads from Pair End WGBS Sequencing. 0: no trim; n (positive integer): trim n bases from begin of +-/-- reads. Default: trim 3 bases."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
225 <param argument="--trimWGBSEndRepairPE1Seq" type="integer" value="3" min="0" label="Bases to trim end-repair sequences from ++/-+" help="To trim end-repair sequence from end of ++/-+ reads from Pair End WGBS Sequencing. 0: no trim; n (positive integer): trim n bases from end of ++/-+ reads. Default: trim 3 bases."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
226 <param argument="--processPEOverlapSeq" type="select" label="Count once or twice the overlap sequence of two pairs" help="Two ends of paired-end reads may be overlapped in mapping. The overlap sequencce will be counted once or twice for cytosine methylation measurements. Default: once.">
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
227 <option value="1" selected="true">Once</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
228 <option value="0">Twice</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
229 </param>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
230 <param argument="--trimRRBSEndRepairSeq" type="select" label="How to trim end-repair sequence for RRBS reads?" help="To trim end-repair sequence for RRBS reads. 0: no trim; 2: trim the last CG at exactly end of ++/-+ reads and trim the first CG at exactly begin of +-/-- reads like the WGBS situation. Default=2.">
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
231 <option value="2" selected="true">2</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
232 <option value="0">0</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
233 </param>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
234 <param argument="--minFragSize" type="integer" value="0" min="0" label="Minimal fragment size for properly mapped reads" help="To retain properly mapped and large enough fragment sizes. The 9th field in the BAM file is the fragment size of the mapping, and non-properly-paired read has 0 at the 9th field. This option is set to require properly paired and large enough fragment size. Default=0 for all records."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
235 <param argument="--minMMFragSize" type="integer" value="0" min="0" label="Minimal fragment size for multiply matched read" help="Same as --minFragSize but this option is only applicable to reads with flag 0x100 set as 1, i.e., reads multiply mapped. Default=0 for all records."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
236 <param argument="--reportCpX" type="select" label="Generates CpG/A/C/T methylation?" help="To generate methylation for CpG, or CpA/CpC/CpT. Default=CpG.">
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
237 <option value="G" selected="true">CpG</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
238 <option value="C">CpC</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
239 <option value="A">CpA</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
240 <option value="T">CpT</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
241 </param>
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
242 </section>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
243 <section name="mcomp_advanced" title="Advanced options for MCOMP" expanded="False">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
244 <conditional name="doComp">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
245 <param name="compare_selector" type="select" label="Run the comparison or not" help="Yes: compare; No: do not compare, using the comparison result by `-c`">
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
246 <option value="1" selected="true">Yes</option>
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
247 <option value="0">No</option>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
248 </param>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
249 <when value="0">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
250 <param argument="-c" name="compFile" type="data" format="txt" label="Input comparison results" help="Previously generated comparison file from history"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
251 </when>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
252 </conditional>
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
253 <param argument="-d" type="integer" value="3" min="0" label="Minimum depth for a site coverage" help="If a site has depth less than `d`, this site is ignored for statistical tests. This option affects much of nominal ratios but none of credible ratios. This option may be reset during later DMC/DMR rescan to filter sites with depth less than `d`. Default=3."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
254 <param argument="--filterCredibleDif" type="float" value="-10" label="Minimum absolute credible methylation difference (CDIF)" help="If absolute value of CDIF for a site less than filterCredibleDif, this site is ignored for regional calculation. Use a small value, such as 0.01, to filter all sites with no difference; use 0.20 (for example) to select DMCs. Any negative number means no filter. Default=-10."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
255 <param argument="--pFetDmc" type="float" value="0.05" min="0" max="1" label="Cutoff of Pvalue from Fisher Exact Test for DMC scan" help="Cutoff of P value from Fisher Exact Test for DMC scan. Default=`0.05`."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
256 <param argument="--pFetDmr" type="float" value="0.05" min="0" max="1" label="Cutoff of Pvalue from Fisher Exact Test for DMR scan" help="Cutoff of P value from Fisher Exact Test for DMR scan. Default=`0.05`."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
257 <param argument="--minNominalDif" type="float" value="0.33333" min="0" max="1" label="Minimal nominal methylation difference for DMC and DMR calling" help="Minimal nominal methylation difference for DMC and DMR. Default=`0.3333`."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
258 <param argument="--minCredibleDif" type="float" value="0.2" min="0" max="1" label="Minimal credible methylation difference for DMC calling" help="Minimal CDIF for DMC calling. Default=`0.2`."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
259 <param argument="--minDmcsInDmr" type="integer" value="3" min="1" label="Minimum number of DMCs in a DMR" help="Minimum number of DMCs in a DMR. Default=3."/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
260 <param argument="--maxDistConsDmcs" type="integer" value="300" min="1" label="Maximum distance between two consective DMCs for a DMR" help="Maximum distance between two consective DMCs for a DMR. Default=300."/>
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
261 </section>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
262 <param name="output_selector" type="select" multiple="true" optional="true" label="Select output files" help="">
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
263 <option value="1" selected="true">dmc_M2_g1.G.bed_vs_g2.G.bed.txt</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
264 <option value="2" selected="true">dmr_M2_g1.G.bed_vs_g2.G.bed.txt</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
265 <option value="3" selected="true">comp.g1.vs.g2.txt</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
266 <option value="4" selected="true">BAM files</option>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
267 <option value="5" selected="true">Methylation calling BED files</option>
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
268 </param>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
269 </inputs>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
270 <outputs>
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
271 <data name="output1" format="interval" label="${tool.name} on ${on_string} : dmc_M2_g1.G.bed_vs_g2.G.bed.txt">
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
272 <filter> "1" in output_selector </filter>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
273 </data>
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
274 <data name="output2" format="interval" label="${tool.name} on ${on_string} : dmr_M2_g1.G.bed_vs_g2.G.bed.txt">
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
275 <filter> "2" in output_selector </filter>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
276 </data>
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
277 <data name="output3" format="interval" label="${tool.name} on ${on_string} : comp.g1.vs.g2.txt">
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
278 <filter> "3" in output_selector </filter>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
279 </data>
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
280 <collection name="output_collection_bam" type="list" label="BAM files">
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
281 <filter> "4" in output_selector </filter>
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
282 <discover_datasets pattern="(?P&lt;designation&gt;.+\.bam$)" ext='bam'/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
283 </collection>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
284 <collection name="output_collection_bed" type="list" label="Methylation calling BED files">
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
285 <filter> "5" in output_selector </filter>
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
286 <discover_datasets pattern="(?P&lt;designation&gt;g[12]\.G\.bed$)" ext='interval'/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
287 </collection>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
288 </outputs>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
289 <tests>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
290 <test>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
291 <!-- test single-end reads -->
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
292 <param name="reference_source_selector" value="history"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
293 <param name="ref_file" ftype="fasta" value="chr11.fa"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
294 <repeat name="g1_fastq">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
295 <conditional name="fastq_input">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
296 <param name="fastq_input_selector" value="single"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
297 <param name="fastq_input1" value="WTPE1.fastq.gz"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
298 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
299 </repeat>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
300 <repeat name="g1_fastq">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
301 <conditional name="fastq_input">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
302 <param name="fastq_input_selector" value="single"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
303 <param name="fastq_input1" value="WTPE2.fastq.gz"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
304 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
305 </repeat>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
306 <repeat name="g2_fastq">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
307 <conditional name="fastq_input">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
308 <param name="fastq_input_selector" value="single"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
309 <param name="fastq_input1" value="TKO2PE1.fastq.gz"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
310 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
311 </repeat>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
312 <repeat name="g2_fastq">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
313 <conditional name="fastq_input">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
314 <param name="fastq_input_selector" value="single"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
315 <param name="fastq_input1" value="TKO2PE2.fastq.gz"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
316 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
317 </repeat>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
318 <conditional name="doComp">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
319 <param name="compare_selector" value="0"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
320 <param name="compFile" value="SE_comp.g1.vs.g2.txt"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
321 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
322 <!--
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
323 <conditional name="doComp">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
324 <param name="compare_selector" value="1"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
325 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
326 -->
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
327 <param name="output_selector" value="1,2,3,4,5"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
328 <output name="output1" file="SE_dmc_M2_g1.G.bed_vs_g2.G.bed.txt" ftype="interval" lines_diff="1"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
329 <output name="output2" file="SE_dmr_M2_g1.G.bed_vs_g2.G.bed.txt" ftype="interval" lines_diff="1"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
330 <output name="output3" file="SE_comp.g1.vs.g2.txt" ftype="interval" lines_diff="1"/>
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
331 <output_collection name="output_collection_bam" count="4">
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
332 <element name="g1_r1.bam" file="SE_g1_r1.bam" ftype="bam" lines_diff="2"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
333 <element name="g1_r2.bam" file="SE_g1_r2.bam" ftype="bam" lines_diff="2"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
334 <element name="g2_r1.bam" file="SE_g2_r1.bam" ftype="bam" lines_diff="2"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
335 <element name="g2_r2.bam" file="SE_g2_r2.bam" ftype="bam" lines_diff="2"/>
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
336 </output_collection>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
337 <output_collection name="output_collection_bed" count="2">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
338 <element name="g1.G.bed" file="SE_g1.G.bed" ftype="interval" lines_diff="1"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
339 <element name="g2.G.bed" file="SE_g2.G.bed" ftype="interval" lines_diff="1"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
340 </output_collection>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
341 </test>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
342 <test>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
343 <!-- test paired-end reads -->
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
344 <param name="reference_source_selector" value="history"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
345 <param name="ref_file" ftype="fasta" value="seg.fa"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
346 <repeat name="g1_fastq">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
347 <conditional name="fastq_input">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
348 <param name="fastq_input_selector" value="paired"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
349 <param name="fastq_input1" value="6_all_1.fq.gz"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
350 <param name="fastq_input2" value="6_all_2.fq.gz"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
351 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
352 </repeat>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
353 <repeat name="g2_fastq">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
354 <conditional name="fastq_input">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
355 <param name="fastq_input_selector" value="paired"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
356 <param name="fastq_input1" value="8_all_1.fq.gz"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
357 <param name="fastq_input2" value="8_all_2.fq.gz"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
358 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
359 </repeat>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
360 <conditional name="doComp">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
361 <param name="compare_selector" value="0"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
362 <param name="compFile" value="PE_comp.g1.vs.g2.txt"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
363 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
364 <!--
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
365 <conditional name="doComp">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
366 <param name="compare_selector" value="1"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
367 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
368 -->
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
369 <param name="output_selector" value="1,2,3"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
370 <output name="output1" file="PE_dmc_M2_g1.G.bed_vs_g2.G.bed.txt" ftype="interval" lines_diff="1"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
371 <output name="output2" file="PE_dmr_M2_g1.G.bed_vs_g2.G.bed.txt" ftype="interval" lines_diff="1"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
372 <output name="output3" file="PE_comp.g1.vs.g2.txt" ftype="interval" lines_diff="1"/>
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
373 </test>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
374 <test>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
375 <!-- test paired collection -->
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
376 <param name="reference_source_selector" value="history"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
377 <param name="ref_file" ftype="fasta" value="seg.fa"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
378 <repeat name="g1_fastq">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
379 <conditional name="fastq_input">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
380 <param name="fastq_input_selector" value="paired_collection"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
381 <param name="fastq_input1">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
382 <collection type="paired">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
383 <element name="forward" value="6_all_1.fq.gz" />
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
384 <element name="reverse" value="6_all_2.fq.gz" />
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
385 </collection>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
386 </param>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
387 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
388 </repeat>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
389 <repeat name="g2_fastq">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
390 <conditional name="fastq_input">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
391 <param name="fastq_input_selector" value="paired_collection"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
392 <param name="fastq_input1">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
393 <collection type="paired">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
394 <element name="forward" value="8_all_1.fq.gz" />
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
395 <element name="reverse" value="8_all_2.fq.gz" />
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
396 </collection>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
397 </param>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
398 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
399 </repeat>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
400 <conditional name="doComp">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
401 <param name="compare_selector" value="0"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
402 <param name="compFile" value="PE_comp.g1.vs.g2.txt"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
403 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
404 <!--
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
405 <conditional name="doComp">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
406 <param name="compare_selector" value="1"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
407 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
408 -->
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
409 <param name="output_selector" value="1,2,3"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
410 <output name="output1" file="PE_dmc_M2_g1.G.bed_vs_g2.G.bed.txt" ftype="interval" lines_diff="1"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
411 <output name="output2" file="PE_dmr_M2_g1.G.bed_vs_g2.G.bed.txt" ftype="interval" lines_diff="1"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
412 <output name="output3" file="PE_comp.g1.vs.g2.txt" ftype="interval" lines_diff="1"/>
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
413 </test>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
414 <test>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
415 <!-- test data table reference -->
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
416 <param name="reference_source_selector" value="cached"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
417 <param name="ref_file" value="chr11"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
418 <repeat name="g1_fastq">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
419 <conditional name="fastq_input">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
420 <param name="fastq_input_selector" value="single"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
421 <param name="fastq_input1" value="WTPE1.fastq.gz"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
422 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
423 </repeat>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
424 <repeat name="g1_fastq">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
425 <conditional name="fastq_input">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
426 <param name="fastq_input_selector" value="single"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
427 <param name="fastq_input1" value="WTPE2.fastq.gz"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
428 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
429 </repeat>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
430 <repeat name="g2_fastq">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
431 <conditional name="fastq_input">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
432 <param name="fastq_input_selector" value="single"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
433 <param name="fastq_input1" value="TKO2PE1.fastq.gz"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
434 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
435 </repeat>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
436 <repeat name="g2_fastq">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
437 <conditional name="fastq_input">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
438 <param name="fastq_input_selector" value="single"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
439 <param name="fastq_input1" value="TKO2PE2.fastq.gz"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
440 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
441 </repeat>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
442 <conditional name="doComp">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
443 <param name="compare_selector" value="0"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
444 <param name="compFile" value="SE_comp.g1.vs.g2.txt"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
445 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
446 <!--
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
447 <conditional name="doComp">
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
448 <param name="compare_selector" value="1"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
449 </conditional>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
450 -->
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
451 <param name="output_selector" value="1,2,3"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
452 <output name="output1" file="SE_dmc_M2_g1.G.bed_vs_g2.G.bed.txt" ftype="interval" lines_diff="1"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
453 <output name="output2" file="SE_dmr_M2_g1.G.bed_vs_g2.G.bed.txt" ftype="interval" lines_diff="1"/>
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
454 <output name="output3" file="SE_comp.g1.vs.g2.txt" ftype="interval" lines_diff="1"/>
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
455 </test>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
456 </tests>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
457 <help>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
458 <![CDATA[
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
459 **MOABS: MOdel based Analysis of Bisulfite Sequencing data**
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
460
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
461 MOABS is a comprehensive, accurate and efficient solution for analysis of large
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
462 scale base-resolution DNA methylation data, bisulfite sequencing or single
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
463 molecule direct sequencing.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
464
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
465 MOABS seamlessly integrates alignment, methylation calling, identification of
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
466 hypomethylation for one sample and differential methylation for multiple
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
467 samples, and other downstream analysis.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
468
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
469 For more information, check https://github.com/sunnyisgalaxy/moabs.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
470
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
471 -----
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
472
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
473 **Input files**
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
474
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
475 MOABS needs to input Bisulfite sequencing reads in two groups of interest, e.g.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
476 KO vs WT. Each group of reads may have combined sequencing library, i.e.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
477 single-end reads and/or paired-end reads. Multiple replicates can be specified in each group.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
478
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
479 **Outputs**
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
480
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
481 Five output files can be selected to report, namely
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
482
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
483 1. **DMC site file** - the major DMC result file
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
484 2. **DMR region file** - the major DMR result file
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
485 3. **Comparison file between two groups** - the intermediate comparion result
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
486 4. **BAM files** - intermediate BAM files
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
487 5. **Methylation BED files** - intermediate methylation BED files
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
488
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
489 -----
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
490
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
491 MOABS detects differentially methylated cytosines (DMCs) and differentially
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
492 methylated regions (DMRs) using the input BS-Seq reads. The output DMC and DMR
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
493 file are tab-delimited text files (not strictly a BED format), representing
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
494 DMCs and DMRs.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
495
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
496 A DMC site file has 15 columns as below.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
497
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
498 chrom<TAB>start<TAB>end<TAB>totalC_0<TAB>nominalRatio_0<TAB>ratioCI_0<TAB>totalC_1<TAB>nominalRatio_1<TAB>ratioCI_1<TAB>nominalDif_1-0<TAB>credibleDif_1-0<TAB>difCI_1-0<TAB>p_sim_1_v_0<TAB>p_fet_1_v_0<TAB>class
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
499
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
500 1. **chrom** - The chromosome of the CpG site.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
501 2. **start** - The start genomic locus of the CpG site.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
502 3. **end** - The end genomic locus of the CpG site.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
503 4. **totalC_0** - The total number of CpG read coverage in group 0.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
504 5. **nominalRatio_0** - The nominal methylation ratio of the CpG in group 0.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
505 6. **ratioCI_0** - The confidence interval (CI) of the nominal methylation ratio at the CpG site in group 0.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
506 7. **totalC_1** - The total number of CpG read coverage in group 1.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
507 8. **nominalRatio_1** - The nominal methylation ratio of the CpG in group 1.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
508 9. **ratioCI_1** - The confidence interval (CI) of the nominal methylation ratio at the CpG site in group 1.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
509 10. **nominalDif_1-0** - The nominal methylation difference between the group 1 and the group 0.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
510 11. **credibleDif_1-0** - The credible methylation difference (CDIF) between the group 1 and the group 0.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
511 12. **difCI_1-0** - The difference of ratio CIs between the group 1 and the group 0.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
512 13. **p_sim_1_v_0** - P-value according to the similarity probablities.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
513 14. **p_fet_1_v_0** - P-value according to the Fisher exact test.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
514 15. **class** - 5-state class labels by methylation differences and p-values.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
515
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
516 For example, CpGs in the DMC file are recorded in the following format.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
517
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
518 @DMCExample@
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
519
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
520 A DMR result file has 12 columns as below.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
521
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
522 chrom<TAB>start<TAB>end<TAB>meanRatio_0<TAB>totalC_0<TAB>cSites_0<TAB>meanRatio_1<TAB>totalC_1<TAB>cSites_1<TAB>methDif_1-0<TAB>p_1_v_0<TAB>class_1_v_0
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
523
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
524 1. **chrom** - The chromosome of the region.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
525 2. **start** - The start genomic locus of the region.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
526 3. **end** - The end genomic locus of the region.
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
527 4. **meanRatio_0** - Mean methylation ratio of the region in group 0.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
528 5. **totalC_0** - Total cytosine coverage of the region in group 0.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
529 6. **cSites_0** - The number of CpG sites of the region in group 0.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
530 7. **meanRatio_1** - Mean methylation ratio of the region in group 1.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
531 8. **totalC_1** - Total cytosine coverage of the region in group 1.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
532 9. **cSites_1** - The number of CpG sites of the region in group 1.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
533 10. **methDif_1-0** - Average methylation difference of the region between group 1 and group 0.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
534 11. **p_1_v_0** - P-value from Fisher exact test of the region between group 1 and group 0.
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
535 12. **class_1_v_0** - 5-state class labels for the DMR.
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
536
1
8c8cc81b34cd "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit 6a45aa4c34b4f3b73ab0c6c3d9e7a315b62bf761"
iuc
parents: 0
diff changeset
537 For example, four DMRs are identified in the following format.
0
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
538
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
539 @DMRExample@
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
540
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
541 -----
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
542
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
543 The intermediate comparison file summarizes methylation ratio comparison
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
544 results on CpG sites. It has 19 columns as below.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
545
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
546 1. **chrom** - The chromosome of the GpG site.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
547 2. **start** - The start position of the site.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
548 3. **end** - The end position of the site.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
549 4. **single** - The next two columns are attributes for the single position.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
550 5. **totalC_0** - Total number of Cs in the first group.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
551 6. **nominalRatio_0** - Nominal methylation ratio in the first group.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
552 7. **ratioCI_0** - The confidence interval of the methylation ratio in the first group.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
553 8. **single** - The next two columns are attributes for the single position.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
554 9. **totalC_1** - Total number of Cs in the second group.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
555 10. **nominalRatio_1** - Nominal methylation ratio in the second group.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
556 11. **ratioCI_1** - The confidence interval of the methylation ratio in the second group.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
557 12. **pair** - The next three columns are attributes for pairs of groups.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
558 13. **nominalDif_1-0** - Nominal difference of methylation ratio between group 1 and group 0.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
559 14. **credibleDif_1-0** - Credible methylation difference between group 1 and group 0.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
560 15. **difCI_1-0** - Difference of confidence intervals between group 1 and group 0.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
561 16. **p_sim** - The next column is the simulation p-value.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
562 17. **p_sim_1_v_0** - Simulation p-value between group 1 and group 0.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
563 18. **p_fet** - The next column is the FET p-value.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
564 19. **p_fet_1_v_0** - FET p-value between group 1 and group 0.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
565
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
566 The comparison result file can be reused for DMR calling.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
567
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
568 -----
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
569
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
570 BAM files are intermediate mapping results of input reads to the referene
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
571 genome. These BAM files can be reused in downstream methylation analysis.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
572
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
573 -----
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
574
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
575 Methylation calling BED files are intermediate methylation calling results of
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
576 Cs in two groups of input reads. These methyation calling results can be easily
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
577 reused in downstream DMR calling and visualization. The BED file has 15 columns
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
578 as below.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
579
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
580 1. **chrom** - The chromosome of the site.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
581 2. **start** - The start position of the site.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
582 3. **end** - The end position of the site.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
583 4. **ratio** - Methylation ratio in the site
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
584 5. **totalC** - Total number of reads in current Cs.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
585 6. **methC** - Methylated Cs.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
586 7. **strand** - The strand information for prevous three columns.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
587 8. **next** - The next base.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
588 9. **Plus** - Next two columns are for forward strand.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
589 10. **totalC** - Total number of Cs.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
590 11. **methC** - Methylated Cs.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
591 12. **Minus** - Next two columns are for reverse strand.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
592 13. **totalC** - Total number of Cs.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
593 14. **methC** - Methylated Cs.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
594 15. **localSeq** - Local sequences.
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
595
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
596 ]]>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
597 </help>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
598 <expand macro="citations"/>
26d7ec4af119 "planemo upload for repository https://github.com/sunnyisgalaxy/moabs commit fca680a439f168971afc9944ccbbdd9b3b65c845"
iuc
parents:
diff changeset
599 </tool>