annotate optitype.xml @ 0:3902a76bf089 draft

"planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
author jjohnson
date Thu, 12 Mar 2020 11:32:13 -0400
parents
children 54c9c71dabe8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
1 <tool id="optitype" name="OptiType" version="1.3.2">
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
2 <description>HLA genotyping predictions from NGS data</description>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
3 <requirements>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
4 <requirement type="package" version="1.3.2">optitype</requirement>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
5 </requirements>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
6 <stdio>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
7 <exit_code range="1:" level="fatal" description="Error Running optitype" />
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
8 </stdio>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
9 <command>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
10 <![CDATA[
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
11 #set $fastqs = []
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
12 #if str( $fastq_input.fastq_input_selector ) == "paired":
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
13 ln -s "${fastq_input.fastq_input1}" reads_1.fastq
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
14 && ln -s "${fastq_input.fastq_input2}" reads_2.fastq
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
15 #set $fastqs = ['reads_1.fastq','reads_2.fastq']
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
16 #elif str( $fastq_input.fastq_input_selector ) == "paired_collection":
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
17 ln -s "${fastq_input.fastq_input1.forward}" reads_1.fastq
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
18 && ln -s "${fastq_input.fastq_input1.reverse}" reads_2.fastq
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
19 #set $fastqs = ['reads_1.fastq','reads_2.fastq']
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
20 #elif str( $fastq_input.fastq_input_selector ) == "single":
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
21 ln -s "${fastq_input.fastq_input1}" reads.fastq
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
22 #set $fastqs = ['reads.fastq']
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
23 #end if
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
24 && cp \$OPTITYPE_DIR/config.ini .
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
25 && ln -s \$OPTITYPE_DIR/data data
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
26 #set $input_fq = ' '.join($fastqs)
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
27 && python \$OPTITYPE_DIR/OptiTypePipeline.py
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
28 $read_type --input ${' '.join($fastqs)}
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
29 #if str($beta) != '':
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
30 --beta $beta
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
31 #end if
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
32 #if str($enumerations) != '':
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
33 --enumerate $enumerations
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
34 #end if
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
35 --outdir $outdir
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
36 && cp $outdir/*/*_coverage_plot.pdf $coverage_plot
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
37 && cp $outdir/*/*_result.tsv $result
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
38 ]]>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
39 </command>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
40 <inputs>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
41 <conditional name="fastq_input">
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
42 <param name="fastq_input_selector" type="select" label="Single or Paired-end reads" help="Select between paired and single end data">
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
43 <option value="paired">Paired</option>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
44 <option value="single">Single</option>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
45 <option value="paired_collection">Paired Collection</option>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
46 </param>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
47 <when value="paired">
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
48 <param name="fastq_input1" type="data" format="fastqsanger" label="Select first set of reads" help="Specify dataset with forward reads"/>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
49 <param name="fastq_input2" type="data" format="fastqsanger" label="Select second set of reads" help="Specify dataset with reverse reads"/>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
50 </when>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
51 <when value="single">
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
52 <param name="fastq_input1" type="data" format="fastqsanger" label="Select fastq dataset" help="Specify dataset with single reads"/>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
53 </when>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
54 <when value="paired_collection">
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
55 <param name="fastq_input1" format="fastqsanger" type="data_collection" collection_type="paired" label="Select a paired collection" help="See help section for an explanation of dataset collections"/>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
56 </when>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
57 </conditional>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
58 <param name="read_type" type="select" label="Nucleotide Type" help="">
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
59 <option value="--rna">RNA</option>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
60 <option value="--dna">DNA</option>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
61 </param>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
62 <param name="beta" type="float" value="" min="0.0" max="0.1" optional="true" label="homozygosity beta" help="The beta value for for homozygosity detection (Leave blank for default: 0.009)"/>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
63 <param name="enumerations" type="integer" value="" min="1" max="5" optional="true" label="Enumerations" help="The number of enumerations (Leave blank for default: 1)"/>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
64 <param name="outdir" type="hidden" value="output_dir"/>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
65 </inputs>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
66 <outputs>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
67 <data format="pdf" name="coverage_plot" label="${tool.name} on ${on_string} coverage_plot.pdf"/>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
68 <data format="tabular" name="result" label="${tool.name} on ${on_string} result.tsv"/>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
69 </outputs>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
70 <tests>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
71 <test>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
72 </test>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
73 </tests>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
74 <help>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
75 <![CDATA[
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
76 **OptiType**
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
77 ============
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
78
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
79 OptiType_ is a novel HLA genotyping algorithm based on integer linear programming, capable of producing accurate 4-digit HLA genotyping predictions from NGS data by simultaneously selecting all major and minor HLA Class I alleles.
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
80
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
81 **INPUTS**
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
82
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
83 RNA or DNA sequences in fastq format.
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
84
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
85 **OPTIONS**
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
86
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
87 --beta <BETA_VALUE> The beta value for for homozygosity detection (see cited paper).
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
88 Default: 0.009. Handle with care.
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
89 --enumerate <ENUMERATIONS> Number of enumerations.
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
90 OptiType will output the optimal solution and the top N-1 suboptimal solutions in the results.
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
91 Default: 1
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
92
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
93
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
94 **OUTPUTS**
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
95
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
96 result.tsv A TAB-separated file of HLA genotyping predictions:
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
97
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
98 ::
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
99
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
100 A1 A2 B1 B2 C1 C2 Reads Objective
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
101 0 A*31:01 A*68:01 B*40:01 B*51:01 C*15:02 C*03:04 132 128.43599999999998
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
102
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
103
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
104 coverage_plot.pdf Plots of coverage of HLA genotyping predictions
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
105
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
106 .. _OptiType: https://github.com/FRED-2/OptiType
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
107 ]]>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
108 </help>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
109 <citations>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
110 <citation type="doi">10.1093/bioinformatics/btu548</citation>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
111 </citations>
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
112 </tool>