comparison hicQuickQC.xml @ 1:b599d3000966 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 5744259254d4254a29cb7a6687fbbfd103301064"
author bgruening
date Wed, 05 Feb 2020 19:53:34 -0500
parents 269c4246279d
children 909125ec301f
comparison
equal deleted inserted replaced
0:269c4246279d 1:b599d3000966
13 13
14 --samFiles 14 --samFiles
15 #for $repeat in $samFiles: 15 #for $repeat in $samFiles:
16 '${repeat.samFile}' 16 '${repeat.samFile}'
17 #end for 17 #end for
18
19 #if $restrictionCutFileBinSize_conditional.restrictionCutFileBinSize_selector == "optionRestrictionCutFile":
20 --restrictionCutFile '$restrictionCutFileBinSize_conditional.restrictionCutFile'
21 --minDistance $restrictionCutFileBinSize_conditional.minDistance
22 --maxLibraryInsertSize $restrictionCutFileBinSize_conditional.maxLibraryInsertSize
23 #end if
24
25 #if $restrictionCutFileBinSize_conditional.restrictionCutFileBinSize_selector == "optionBinSize":
26 --binSize
27 #for $repeat in $restrictionCutFileBinSize_conditional.binSizes
28 '${repeat.binSize}'
29 #end for
30 #end if
31
32 18
33 #if $restrictionSequence: 19 #if $restrictionSequence:
34 --restrictionSequence '$restrictionSequence' 20 --restrictionSequence '$restrictionSequence'
35 #end if 21 #end if
36 22
48 <inputs> 34 <inputs>
49 <repeat max="2" min="2" name="samFiles" title="Sam/Bam files to process (forward/reverse)" 35 <repeat max="2" min="2" name="samFiles" title="Sam/Bam files to process (forward/reverse)"
50 help="Please use the special BAM datatype: qname_input_sorted.bam and use for 'bowtie2' the '--reorder' option to create a BAM file."> 36 help="Please use the special BAM datatype: qname_input_sorted.bam and use for 'bowtie2' the '--reorder' option to create a BAM file.">
51 <param name="samFile" type="data" format="sam,qname_input_sorted.bam"/> 37 <param name="samFile" type="data" format="sam,qname_input_sorted.bam"/>
52 </repeat> 38 </repeat>
53 <conditional name="restrictionCutFileBinSize_conditional"> 39
54 <param name="restrictionCutFileBinSize_selector" type="select" label="Choose to use a restriction cut file or a bin size">
55 <option value="optionRestrictionCutFile">Restriction cut file</option>
56 <option value="optionBinSize" selected="True">Bin size</option>
57 </param>
58 <when value="optionRestrictionCutFile">
59 <param argument="--restrictionCutFile" type="data" format="bed" optional="true" label="BED file with all restriction cut places"
60 help="Should contaion only mappable restriction sites. If given, the bins are set to match the restriction fragments
61 (i.e. the region between one restriction site and the next)." />
62 <param argument="--minDistance" type="integer" value="" optional="true" label="Minimum distance between restriction sites"
63 help="Restriction sites that are closer that this distance are merged into one.
64 This option only applies if --restrictionCutFile is given."/>
65 <param argument="--maxLibraryInsertSize" type="integer" value="" optional="true"
66 label="Maximum library insert size defines different cut offs based on the maximum expected library size"
67 help="*This is not the average fragment size* but the higher end of the fragment size distribution (obtained using for example Fragment Analyzer)
68 which usually is between 800 to 1500 bp. If this value if not known use the default of 1000. The insert value is used to decide if two mates
69 belong to the same fragment (by checking if they are within this max insert size) and to decide if a mate
70 is too far away from the nearest restriction site." />
71 </when>
72 <when value="optionBinSize">
73 <repeat name='binSizes' title='Bin size in bp' min="1" help="If used, the restriction cut places (if given) are used to only consider reads that are in the vicinity of the resctriction sites.
74 Otherwise all reads in the interval are considered. Use multiple ones to create a mcool file.">
75 <param argument="--binSize" type="integer" value="" optional="true" label="Bin size in bp"/>
76 </repeat>
77 </when>
78 </conditional>
79
80 <param argument="--restrictionSequence" type="text" optional="true" label="Sequence of the restriction site" 40 <param argument="--restrictionSequence" type="text" optional="true" label="Sequence of the restriction site"
81 help="This is used to discard reads that end/start with such sequence and that are considered un-ligated fragments or 41 help="This is used to discard reads that end/start with such sequence and that are considered un-ligated fragments or
82 &quot;dangling-ends&quot;. If not given, such statistics will not be available." /> 42 &quot;dangling-ends&quot;. If not given, such statistics will not be available." />
83 43
84 <param argument="--danglingSequence" type="text" optional="true" label="Dangling sequence" 44 <param argument="--danglingSequence" type="text" optional="true" label="Dangling sequence"