Mercurial > repos > bgruening > hicexplorer_chicexportdata
annotate chicExportData.xml @ 2:cab616fe7e64 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 79133bc3739fbcc6c2055d589679aae312161d03
author | iuc |
---|---|
date | Mon, 04 Nov 2024 23:50:05 +0000 |
parents | 163fd744e235 |
children |
rev | line source |
---|---|
1
163fd744e235
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 8586409c5f329eaf75902eedc3d29a6e82560788
iuc
parents:
0
diff
changeset
|
1 <tool id="hicexplorer_chicexportdata" name="@BINARY@" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
0
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
2 <description>exports data of hdf to txt based files</description> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
3 <macros> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
4 <token name="@BINARY@">chicExportData</token> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
5 <import>macros.xml</import> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
6 </macros> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
7 <expand macro="requirements" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
8 <command detect_errors="exit_code"><![CDATA[ |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
9 #import re |
1
163fd744e235
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 8586409c5f329eaf75902eedc3d29a6e82560788
iuc
parents:
0
diff
changeset
|
10 mkdir exportFolder && |
0
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
11 @BINARY@ |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
12 --file '$file' |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
13 |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
14 #if $fileType_conditional.fileType_selector == 'interaction': |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
15 #if $fileType_conditional.txtBigwig_conditional.txtBigwig_selector == 'txt': |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
16 --outputFileType txt |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
17 #else: |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
18 --outputFileType bigwig |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
19 --outputValueBigwig $fileType_conditional.txtBigwig_conditional.column_selector |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
20 --chromosomeSizes '$fileType_conditional.txtBigwig_conditional.chromosomeSize' |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
21 --range $fileType_conditional.txtBigwig_conditional.rangeUpstream $fileType_conditional.txtBigwig_conditional.rangeDownstream |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
22 --backgroundModelFile '$fileType_conditional.txtBigwig_conditional.backgroundModelFile' |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
23 #end if |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
24 #else if $fileType_conditional.fileType_selector == 'target': |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
25 $fileType_conditional.oneTargetFile |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
26 #end if |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
27 #if $fileType_conditional.fileType_selector != 'interaction': |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
28 --outputFileType txt |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
29 #end if |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
30 |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
31 --outputMode $outputMode_conditional.outputMode_selector |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
32 #if $outputMode_conditional.outputMode_selector == 'geneName': |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
33 --outputModeName $outputMode_conditional.outputModeName |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
34 #end if |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
35 --decimalPlaces $decimalPlaces |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
36 --outFileName exportFolder/export.tar.gz |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
37 --threads @THREADS@ |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
38 |
1
163fd744e235
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 8586409c5f329eaf75902eedc3d29a6e82560788
iuc
parents:
0
diff
changeset
|
39 ]]></command> |
0
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
40 <inputs> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
41 <param name="file" type="data" format="h5" label="" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
42 <conditional name="fileType_conditional"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
43 |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
44 <param name="fileType_selector" type="select" label="Combination mode for the plots"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
45 <option value="interaction" selected="True">Interaction file (from chicViewpoint)</option> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
46 <option value="aggregate">Aggregated file (from chicAggregateStatistic)</option> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
47 <option value="significant" >Significant file (from chicSignificantInteractions)</option> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
48 <option value="target" >Target file (from chicSignificantInteractions)</option> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
49 <option value="differential" >Differential file (from chicDifferentialTest)</option> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
50 </param> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
51 <when value="interaction" > |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
52 <conditional name="txtBigwig_conditional"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
53 <param name="txtBigwig_selector" type="select" label="Output format"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
54 <option value="txt" selected="True">Text</option> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
55 <option value="bigwig">BigWig</option> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
56 </param> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
57 <when value="txt" > |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
58 </when> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
59 <when value="bigwig" > |
1
163fd744e235
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 8586409c5f329eaf75902eedc3d29a6e82560788
iuc
parents:
0
diff
changeset
|
60 <param name="rangeUpstream" type="integer" value="500000" label="Upstream range" |
163fd744e235
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 8586409c5f329eaf75902eedc3d29a6e82560788
iuc
parents:
0
diff
changeset
|
61 help="Defines the region upstream of a reference point which should be considered in the analysis." /> |
163fd744e235
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 8586409c5f329eaf75902eedc3d29a6e82560788
iuc
parents:
0
diff
changeset
|
62 <param name="rangeDownstream" type="integer" value="500000" label="Downstream range" |
163fd744e235
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 8586409c5f329eaf75902eedc3d29a6e82560788
iuc
parents:
0
diff
changeset
|
63 help="Defines the region upstream of a reference point which should be considered in the analysis." /> |
0
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
64 <param name="column_selector" type="select" label="Datatrack output type"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
65 <option value="relative-interactions" selected="True">relative interactions</option> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
66 <option value="p-value">p-value</option> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
67 <option value="x-fold" >x-fold</option> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
68 <option value="raw" >raw</option> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
69 </param> |
1
163fd744e235
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 8586409c5f329eaf75902eedc3d29a6e82560788
iuc
parents:
0
diff
changeset
|
70 <param name="backgroundModelFile" type="data" format="tabular" label="Background model" |
163fd744e235
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 8586409c5f329eaf75902eedc3d29a6e82560788
iuc
parents:
0
diff
changeset
|
71 help="The background file computed by chicViewpointBackgroundModel" /> |
163fd744e235
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 8586409c5f329eaf75902eedc3d29a6e82560788
iuc
parents:
0
diff
changeset
|
72 <param name="chromosomeSize" type="data" format="tabular" label="Chromosome size" |
163fd744e235
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 8586409c5f329eaf75902eedc3d29a6e82560788
iuc
parents:
0
diff
changeset
|
73 help="Chromosome size as tabular file. One chromosome per line" /> |
0
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
74 </when> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
75 </conditional> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
76 </when> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
77 <when value="aggregate" > |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
78 </when> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
79 <when value="significant" > |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
80 </when> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
81 <when value="target" > |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
82 <param name="oneTargetFile" type="boolean" truevalue="--oneTargetFile" falsevalue="" checked="false" label="Create only one target file" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
83 </when> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
84 <when value="differential" > |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
85 </when> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
86 </conditional> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
87 |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
88 <conditional name="outputMode_conditional"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
89 <param name="outputMode_selector" type="select" label="Output mode"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
90 <option value="all" selected="True">all</option> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
91 <option value="geneName" >gene name</option> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
92 </param> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
93 <when value="all" > |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
94 </when> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
95 <when value="geneName" > |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
96 <param name="outputModeName" type="text" value="" label="Gene name" help="Based on this gene name the output is extracted." /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
97 </when> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
98 </conditional> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
99 <param name="decimalPlaces" type="integer" value="12" label="Decimal places" help="Number of decimal places for float values." /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
100 |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
101 </inputs> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
102 <outputs> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
103 <collection name="oneGeneCollectionBigwig" type="list" label="The exported bigwig files"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
104 <discover_datasets pattern="__name__" format="bigwig" directory="exportFolder" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
105 </collection> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
106 <collection name="oneGeneCollectionText" type="list" label="The exported text files"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
107 <discover_datasets pattern="__name__" format="txt" directory="exportFolder" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
108 </collection> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
109 <data name="allTar" from_work_dir="exportFolder/export.tar.gz" format="tar.gz" label="The exported data as tar.gz"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
110 <filter>outputMode_conditional['outputMode_selector'] == 'all'</filter> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
111 </data> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
112 </outputs> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
113 <tests> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
114 <test expect_num_outputs="3"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
115 <param name="file" value="cHi-C/chicAggregateStatistic/aggregate.hdf5" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
116 <conditional name="fileType_conditional"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
117 <param name="fileType_selector" value="aggregate" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
118 </conditional> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
119 <conditional name="outputMode_conditional"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
120 <param name="outputMode_selector" value="all" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
121 </conditional> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
122 <output name="allTar" file="cHi-C/chicExportData/aggregate.tar.gz" ftype="tar.gz" compare="sim_size" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
123 </test> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
124 |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
125 <test expect_num_outputs="2"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
126 <param name="file" value="cHi-C/chicViewpoint/two_matrices.hdf5" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
127 <conditional name="fileType_conditional"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
128 <param name="fileType_selector" value="interaction" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
129 |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
130 <conditional name="txtBigwig_conditional"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
131 <param name="txtBigwig_selector" value="bigwig" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
132 <param name="backgroundModelFile" value="cHi-C/background.txt" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
133 <param name="chromosomeSize" value="cHi-C/hg19.chrom.sizes" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
134 </conditional> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
135 </conditional> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
136 <conditional name="outputMode_conditional"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
137 <param name="outputMode_selector" value="geneName" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
138 <param name="outputModeName" value="Eya1" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
139 </conditional> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
140 <output_collection name="oneGeneCollectionBigwig" type="list" count="4"> |
1
163fd744e235
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 8586409c5f329eaf75902eedc3d29a6e82560788
iuc
parents:
0
diff
changeset
|
141 <element name="FL-E13-5_chr1_genes_Eya1.bigwig" file="cHi-C/chicExportData/oneGene/FL-E13-5_chr1_genes_Eya1.bigwig" ftype="bigwig" compare="sim_size" /> |
163fd744e235
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 8586409c5f329eaf75902eedc3d29a6e82560788
iuc
parents:
0
diff
changeset
|
142 <element name="MB-E10-5_chr1_genes_Eya1.bigwig" file="cHi-C/chicExportData/oneGene/MB-E10-5_chr1_genes_Eya1.bigwig" ftype="bigwig" compare="sim_size" /> |
0
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
143 <element name="background_FL-E13-5_chr1_genes_Eya1_interactions.bigwig" file="cHi-C/chicExportData/oneGene/background_FL-E13-5_chr1_genes_Eya1_interactions.bigwig" ftype="bigwig" compare="sim_size" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
144 <element name="background_MB-E10-5_chr1_genes_Eya1_interactions.bigwig" file="cHi-C/chicExportData/oneGene/background_MB-E10-5_chr1_genes_Eya1_interactions.bigwig" ftype="bigwig" compare="sim_size" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
145 </output_collection> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
146 </test> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
147 <test expect_num_outputs="2"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
148 <param name="file" value="cHi-C/chicViewpoint/two_matrices.hdf5" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
149 <conditional name="fileType_conditional"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
150 <param name="fileType_selector" value="interaction" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
151 <conditional name="txtBigwig_conditional"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
152 <param name="txtBigwig_selector" value="txt" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
153 </conditional> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
154 </conditional> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
155 <conditional name="outputMode_conditional"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
156 <param name="outputMode_selector" value="geneName" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
157 <param name="outputModeName" value="Eya1" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
158 </conditional> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
159 <output_collection name="oneGeneCollectionText" type="list" count="2"> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
160 <element name="FL-E13-5_chr1_genes_Eya1_interactions.txt" file="cHi-C/chicExportData/oneGene/FL-E13-5_chr1_genes_Eya1_interactions.txt" ftype="txt" compare="sim_size" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
161 <element name="MB-E10-5_chr1_genes_Eya1_interactions.txt" file="cHi-C/chicExportData/oneGene/MB-E10-5_chr1_genes_Eya1_interactions.txt" ftype="txt" compare="sim_size" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
162 </output_collection> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
163 </test> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
164 </tests> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
165 <help><![CDATA[ |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
166 |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
167 Exporting the binary data to text files |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
168 ======================================= |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
169 |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
170 chicExportData extracts the data stored in hdf5 files of the capture Hi-C modules to text files. |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
171 |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
172 For more information about HiCExplorer please consider our documentation on readthedocs.io_ |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
173 |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
174 .. _readthedocs.io: http://hicexplorer.readthedocs.io/en/latest/index.html |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
175 ]]> </help> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
176 <expand macro="citations" /> |
23b8d6b8960c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 07802a6bd441d9da888cfb8283f8c2135704f7c9
bgruening
parents:
diff
changeset
|
177 </tool> |