Mercurial > repos > iuc > jbrowse
annotate jbrowse-fromdir.xml @ 41:8774b28235bb draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 8556ea066463f5e112b6ded2c1527011ab1e3b38"
author | iuc |
---|---|
date | Thu, 31 Dec 2020 16:00:42 +0000 |
parents | 3235aeb45c22 |
children |
rev | line source |
---|---|
22
5f70e7fe6077
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit a4b0969b33a68a0ea9ba12291f6694aec24f13ed
iuc
parents:
8
diff
changeset
|
1 <tool id="jbrowse_to_standalone" name="JBrowse - Data Directory to Standalone" version="@TOOL_VERSION@+@WRAPPER_VERSION@"> |
3 | 2 <description>upgrades the bare data directory to a full JBrowse instance</description> |
3 <macros> | |
4 <import>macros.xml</import> | |
5 </macros> | |
41
8774b28235bb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 8556ea066463f5e112b6ded2c1527011ab1e3b38"
iuc
parents:
35
diff
changeset
|
6 <edam_operations> |
8774b28235bb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 8556ea066463f5e112b6ded2c1527011ab1e3b38"
iuc
parents:
35
diff
changeset
|
7 <edam_operation>operation_3434</edam_operation> |
8774b28235bb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 8556ea066463f5e112b6ded2c1527011ab1e3b38"
iuc
parents:
35
diff
changeset
|
8 </edam_operations> |
8774b28235bb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 8556ea066463f5e112b6ded2c1527011ab1e3b38"
iuc
parents:
35
diff
changeset
|
9 <edam_topics> |
8774b28235bb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 8556ea066463f5e112b6ded2c1527011ab1e3b38"
iuc
parents:
35
diff
changeset
|
10 <edam_topic>topic_3307</edam_topic> |
8774b28235bb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 8556ea066463f5e112b6ded2c1527011ab1e3b38"
iuc
parents:
35
diff
changeset
|
11 <edam_topic>topic_0092</edam_topic> |
8774b28235bb
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 8556ea066463f5e112b6ded2c1527011ab1e3b38"
iuc
parents:
35
diff
changeset
|
12 </edam_topics> |
3 | 13 <expand macro="requirements"/> |
25
1cfc579079a6
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit b6f9a87b6091cc881a49e0b6acfadc5e7786967f
iuc
parents:
22
diff
changeset
|
14 <command detect_errors="exit_code"><![CDATA[ |
3 | 15 ## Create output directory |
16 mkdir -p $output.files_path && | |
35
3235aeb45c22
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 22ed9cb1e65cff5239df7ad4c76eaf0e981cf279"
iuc
parents:
25
diff
changeset
|
17 |
3235aeb45c22
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 22ed9cb1e65cff5239df7ad4c76eaf0e981cf279"
iuc
parents:
25
diff
changeset
|
18 export JBROWSE_SOURCE_DIR=\$(dirname \$(command -v prepare-refseqs.pl))/../opt/jbrowse && |
3235aeb45c22
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 22ed9cb1e65cff5239df7ad4c76eaf0e981cf279"
iuc
parents:
25
diff
changeset
|
19 |
3 | 20 ## Copy in jbrowse |
21 cp -R \${JBROWSE_SOURCE_DIR}/* $output.files_path/ && | |
22 | |
23 ## Copy in data directory | |
24 cp -R $input.dataset.extra_files_path/data/ $output.files_path/ && | |
35
3235aeb45c22
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 22ed9cb1e65cff5239df7ad4c76eaf0e981cf279"
iuc
parents:
25
diff
changeset
|
25 cp $output.files_path/index.html $output |
3 | 26 ]]></command> |
27 <inputs> | |
28 <param label="JBrowse Data Directory" | |
29 name="input" | |
30 type="data" | |
31 help="Look for datasets with 'JBrowse ... Data Directory' in the name" | |
32 format="html" /> | |
33 </inputs> | |
34 <outputs> | |
35 <data format="html" name="output" label="#set $name = $input.name.replace('Data Directory', 'Standalone')# $name"/> | |
36 </outputs> | |
8
ad4b9d7eae6a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 9a243c616a4a3156347e38fdb5f35863ae5133f9
iuc
parents:
3
diff
changeset
|
37 <tests> |
ad4b9d7eae6a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 9a243c616a4a3156347e38fdb5f35863ae5133f9
iuc
parents:
3
diff
changeset
|
38 </tests> |
3 | 39 <help><![CDATA[ |
40 Upgrades an existing bare JBrowse "data" directory into a full-fledged JBrowse instance. | |
41 | |
42 @ATTRIBUTION@ | |
43 ]]></help> | |
8
ad4b9d7eae6a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 9a243c616a4a3156347e38fdb5f35863ae5133f9
iuc
parents:
3
diff
changeset
|
44 <expand macro="citations"/> |
3 | 45 </tool> |