annotate cnv-phenopacket.xml @ 0:61aad58c7b2d draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
author iuc
date Fri, 01 Mar 2024 19:04:08 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
1 <tool id="cnv_phenopacket" name="CNV Phenopacket" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.05">
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
2 <description>Builds Phenopacket schema for the structural variants metadata from the 1000hg project</description>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
3 <macros>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
4 <import>macros.xml</import>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
5 </macros>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
6 <expand macro="requirements"/>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
7 <expand macro="creators"/>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
9 #import re
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
10 ln -s '$input_tsv_file' ./input.tsv &&
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
11 cnv-phenopacket
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
12 -i ./input.tsv
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
13 -o phenopacket.json
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
14 ]]></command>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
15 <inputs>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
16 <param name="input_tsv_file" type="data" format="tabular" label="Metadata file" help="" />
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
17 </inputs>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
18 <outputs>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
19 <data name="output_json" format="json" label="${tool.name} on ${on_string}: CNV Metadata JSON File" from_work_dir="phenopacket.json" />
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
20 </outputs>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
21 <tests>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
22 <test expect_num_outputs="1">
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
23 <param name="input_tsv_file" ftype="tabular" value="igsr-1000-genomes-30x-on-grch38.tsv" />
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
24 <output name="output_json" file="phenopacket.json" />
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
25 </test>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
26 </tests>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
27 <help><![CDATA[
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
28 The tool extracts the metadata for the variants from the TSV file and and converts them into JSON file as a preprocessing step to import the data into Beacon2 MongoDB protocol
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
29 ]]></help>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
30 <expand macro="citations"/>
61aad58c7b2d planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cnv-phenopacket commit 022f0e712defd963f3a3480c5ee6cddf4157e81c
iuc
parents:
diff changeset
31 </tool>