annotate optitype.xml @ 1:54c9c71dabe8 draft

"planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
author jjohnson
date Thu, 12 Mar 2020 12:38:06 -0400
parents 3902a76bf089
children bf36e0afdfb4
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">
1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
2 <description>HLA genotyping predictions from NGS data</description>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
3 <requirements>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
4 <requirement type="package" version="1.3.2">optitype</requirement>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
5 </requirements>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
6 <command detect_errors="aggressive">
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
7 <![CDATA[
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
8 #set $fastqs = []
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
9 #if str( $fastq_input.fastq_input_selector ) == "paired":
1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
10 ln -s "${fastq_input.fastq_input1}" reads_1.fastq
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
11 && ln -s "${fastq_input.fastq_input2}" reads_2.fastq
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
12 #set $fastqs = ['reads_1.fastq','reads_2.fastq']
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
13 #elif str( $fastq_input.fastq_input_selector ) == "paired_collection":
1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
14 ln -s "${fastq_input.fastq_input1.forward}" reads_1.fastq
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
15 && ln -s "${fastq_input.fastq_input1.reverse}" reads_2.fastq
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
16 #set $fastqs = ['reads_1.fastq','reads_2.fastq']
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
17 #elif str( $fastq_input.fastq_input_selector ) == "single":
1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
18 ln -s "${fastq_input.fastq_input1}" reads.fastq
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
19 #set $fastqs = ['reads.fastq']
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
20 #end if
1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
21 && RAZERS3=`which razers3`
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
22 && sed "s#path_to_razers3#\$RAZERS3#" '$optitype_config' | sed "s/threads=16/threads=\$GALAXY_SLOTS/" > config.ini
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
23 #set $input_fq = ' '.join($fastqs)
1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
24 && OptiTypePipeline.py
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
25 $read_type --input ${' '.join($fastqs)}
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
26 #if str($beta) != '':
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
27 --beta $beta
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
28 #end if
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
29 #if str($enumerations) != '':
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
30 --enumerate $enumerations
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
31 #end if
1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
32 --config "`pwd`/config.ini"
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
33 --outdir $outdir
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
34 && 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
35 && 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
36 ]]>
1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
37 </command>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
38 <configfiles>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
39 <configfile name="optitype_config"><![CDATA[
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
40 [mapping]
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
41
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
42 # Absolute path to RazerS3 binary, and number of threads to use for mapping
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
43
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
44 razers3=path_to_razers3
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
45 threads=16
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
46
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
47 [ilp]
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
48
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
49 # A Pyomo-supported ILP solver. The solver must be globally accessible in the
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
50 # environment OptiType is run, so make sure to include it in PATH.
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
51 # Note: this is NOT a path to the solver binary, but a keyword argument for
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
52 # Pyomo. Examples: glpk, cplex, cbc.
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
53
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
54 solver=$solver
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
55 threads=1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
56
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
57 [behavior]
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
58
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
59 # tempdir=/path/to/tempdir # we may enable this setting later. Not used now.
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
60
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
61 # Delete intermediate bam files produced by RazerS3 after OptiType finished
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
62 # loading them. If you plan to re-analyze your samples with different settings
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
63 # disabling this option can be a time-saver, as you'll be able to pass the bam
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
64 # files to OptiType directly as input and spare the expensive read mapping
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
65 # step.
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
66
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
67 deletebam=true
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
68
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
69 # In paired-end mode one might want to use reads with just one mapped end (e.g.,
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
70 # the other end falls outside the reference region). This setting allows the
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
71 # user to keep them with an optionally reduced weight. A value of 0 means they
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
72 # are discarded for typing, 0.2 means single reads are "worth" 20% of paired
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
73 # reads, and a value of 1 means they are treated as valuable as properly mapped
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
74 # read pairs. Note: unpaired reads will be reported on the result coverage plots
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
75 # for completeness, regardless of this setting.
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
76
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
77 unpaired_weight=$unpaired_weight
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
78
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
79 # We call a read pair discordant if its two ends best-map to two disjoint sets
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
80 # of alleles. Such reads can be either omitted or either of their ends treated
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
81 # as unpaired hits. Note: discordant read pairs are reported on the coverage
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
82 # plots as unpaired reads, regardless of this setting.
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
83
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
84 use_discordant=$use_discordant
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
85 ]]></configfile>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
86 </configfiles>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
87 <inputs>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
88 <conditional name="fastq_input">
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
89 <param name="fastq_input_selector" type="select" label="Single or Paired-end reads" help="Select between paired and single end data">
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
90 <option value="paired">Paired</option>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
91 <option value="single">Single</option>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
92 <option value="paired_collection">Paired Collection</option>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
93 </param>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
94 <when value="paired">
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
95 <param name="fastq_input1" type="data" format="fastqsanger" label="Select first set of reads" help="Specify dataset with forward reads"/>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
96 <param name="fastq_input2" type="data" format="fastqsanger" label="Select second set of reads" help="Specify dataset with reverse reads"/>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
97 </when>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
98 <when value="single">
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
99 <param name="fastq_input1" type="data" format="fastqsanger" label="Select fastq dataset" help="Specify dataset with single reads"/>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
100 </when>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
101 <when value="paired_collection">
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
102 <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"/>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
103 </when>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
104 </conditional>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
105 <param name="read_type" type="select" label="Nucleotide Type" help="">
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
106 <option value="--rna">RNA</option>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
107 <option value="--dna">DNA</option>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
108 </param>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
109 <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)"/>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
110 <param name="enumerations" type="integer" value="" min="1" max="5" optional="true" label="Enumerations" help="The number of enumerations (Leave blank for default: 1)"/>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
111 <param name="solver" type="select" label="ILP solver" help="">
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
112 <option value="glpk">glpk</option>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
113 <!--
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
114 <option value="cbc">cbc</option>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
115 -->
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
116 </param>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
117 <param name="unpaired_weight" type="float" value="0" min="0.0" max="1.0" label="unpaired_weight">
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
118 <help><![CDATA[
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
119 In paired-end mode one might want to use reads with just one mapped end (e.g.,
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
120 the other end falls outside the reference region). This setting allows the
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
121 user to keep them with an optionally reduced weight. A value of 0 means they
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
122 are discarded for typing, 0.2 means single reads are "worth" 20% of paired
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
123 reads, and a value of 1 means they are treated as valuable as properly mapped
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
124 read pairs. Note: unpaired reads will be reported on the result coverage plots
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
125 for completeness, regardless of this setting. ]]>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
126 </help>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
127 </param>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
128 <param name="use_discordant" type="boolean" truevalue="true" falsevalue="false" checked="false" label="use_discordant">
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
129 <help><![CDATA[
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
130 We call a read pair discordant if its two ends best-map to two disjoint sets
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
131 of alleles. Such reads can be either omitted or either of their ends treated
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
132 as unpaired hits. Note: discordant read pairs are reported on the coverage
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
133 plots as unpaired reads, regardless of this setting. ]]>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
134 </help>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
135 </param>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
136 <param name="outdir" type="hidden" value="output_dir"/>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
137 </inputs>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
138 <outputs>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
139 <data format="pdf" name="coverage_plot" label="${tool.name} on ${on_string} coverage_plot.pdf"/>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
140 <data format="tabular" name="result" label="${tool.name} on ${on_string} result.tsv"/>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
141 </outputs>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
142 <tests>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
143 <test>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
144 <conditional name="fastq_input">
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
145 <param name="fastq_input_selector" value="paired"/>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
146 <param name="fastq_input1" ftype="fastqsanger" value="rna/CRC_81_N_1_fished.fastq"/>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
147 <param name="fastq_input2" ftype="fastqsanger" value="rna/CRC_81_N_2_fished.fastq"/>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
148 </conditional>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
149 <output name="result">
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
150 <assert_contents>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
151 <has_text text="A*31:01" />
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
152 </assert_contents>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
153 </output>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
154 </test>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
155 </tests>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
156 <help>
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
157 <![CDATA[
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
158 **OptiType**
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
159 ============
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
160
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
161 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
162
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
163 **INPUTS**
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
164
1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
165 RNA or DNA sequences in fastq format.
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
166
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
167 **OPTIONS**
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
168
1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
169 --beta <BETA_VALUE> The beta value for for homozygosity detection (see cited paper).
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
170 Default: 0.009. Handle with care.
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
171 --enumerate <ENUMERATIONS> Number of enumerations.
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
172 OptiType will output the optimal solution and the top N-1 suboptimal solutions in the results.
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
173 Default: 1
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
174
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
175
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
176 **OUTPUTS**
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
177
1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
178 result.tsv A TAB-separated file of HLA genotyping predictions:
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
179
1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
180 ::
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
181
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
182 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
183 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
184
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
185
1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
186 coverage_plot.pdf Plots of coverage of HLA genotyping predictions
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
187
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
188 .. _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
189 ]]>
1
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
190 </help>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
191 <citations>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
192 <citation type="doi">10.1093/bioinformatics/btu548</citation>
54c9c71dabe8 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 4c7dc6705700adf361aadf9ab6ccb425c6691153"
jjohnson
parents: 0
diff changeset
193 </citations>
0
3902a76bf089 "planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/optitype commit 92a9a2f36072d19783d111ae15843c47a7a85c87"
jjohnson
parents:
diff changeset
194 </tool>