annotate seq2hla.xml @ 1:5a7cd6c39085 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit c6f68e0efd9aa7e566289650ad126e0c7d192a8b"
author iuc
date Wed, 07 Apr 2021 12:37:40 +0000
parents 52bba1cd3823
children 86d0ce0560a1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
5a7cd6c39085 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit c6f68e0efd9aa7e566289650ad126e0c7d192a8b"
iuc
parents: 0
diff changeset
1 <tool id="seq2hla" name="seq2HLA" version="2.2.0+galaxy1">
0
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
2 <description>HLA genotype and expression from RNA-seq</description>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
3 <requirements>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
4 <!-- needed because of some non POSIX compliant wc usage -->
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
5 <requirement type="package" version="8.31">coreutils</requirement>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
6 <requirement type="package" version="2.2">seq2hla</requirement>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
7 </requirements>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
9 seq2HLA --runName='$run_name' -1 '$fastq_input1' -2 '$fastq_input2'
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
10 #if str($trim) != '':
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
11 --trim3=$trim
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
12 #end if
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
13 -p \${GALAXY_SLOTS:-1} >> '$seq2hla_log'
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
14 && cp -p '${run_name}-ClassI.HLAgenotype2digits' '${c1_genotype2digits}'
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
15 && cp -p '${run_name}-ClassI.HLAgenotype4digits' '${c1_genotype4digits}'
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
16 && echo '#Locus_RPKM' | cat - '${run_name}-ClassI.expression' | sed 's/^\(.*\): \([0-9.]*\).*$/\1_\2/' | tr '_' '\t' > '${c1_expression}'
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
17 && cp -p '${run_name}-ClassII.HLAgenotype4digits' '${c2_genotype4digits}'
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
18 && echo '#Locus_RPKM' | cat - '${run_name}-ClassII.expression' | sed 's/^\(.*\): \([0-9.]*\).*$/\1_\2/' | tr '_' '\t' > '${c2_expression}'
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
19 && cp -p '${run_name}.ambiguity' '${ambiguity}'
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
20 ]]></command>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
21 <inputs>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
22 <param name="run_name" type="text" value="sample1" label="Name prefix for this analysis">
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
23 <validator type="regex" message="Use letters,digits,_.-">^[A-Za-z0-9_\-+.]+$</validator>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
24 </param>
1
5a7cd6c39085 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit c6f68e0efd9aa7e566289650ad126e0c7d192a8b"
iuc
parents: 0
diff changeset
25 <param name="fastq_input1" type="data" format="fastqsanger,fastqsanger.gz" label="Select first set of reads" help="Specify dataset with forward reads"/>
5a7cd6c39085 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit c6f68e0efd9aa7e566289650ad126e0c7d192a8b"
iuc
parents: 0
diff changeset
26 <param name="fastq_input2" type="data" format="fastqsanger,fastqsanger.gz" label="Select second set of reads" help="Specify dataset with reverse reads"/>
0
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
27 <param name="trim" type="integer" value="" min="0" optional="true" label="Trim bases from 3 prime"
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
28 help="trim this many bases from the low-quality end of each read" />
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
29 </inputs>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
30 <outputs>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
31 <data format="txt" name="seq2hla_log" label="${tool.name} on ${on_string}: ${run_name} logfile"/>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
32 <data format="tabular" name="c1_genotype2digits" label="${tool.name} on ${on_string}: ${run_name}-ClassI.HLAgenotype2digits"/>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
33 <data format="tabular" name="c1_genotype4digits" label="${tool.name} on ${on_string}: ${run_name}-ClassI.HLAgenotype4digits"/>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
34 <data format="tabular" name="c2_genotype4digits" label="${tool.name} on ${on_string}: ${run_name}-ClassII.HLAgenotype4digits"/>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
35 <data format="tabular" name="c1_expression" label="${tool.name} on ${on_string}: ${run_name}-ClassI.expression"/>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
36 <data format="tabular" name="c2_expression" label="${tool.name} on ${on_string}: ${run_name}-ClassII.expression"/>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
37 <data format="tabular" name="c2_expression" label="${tool.name} on ${on_string}: ${run_name}-ClassII.expression"/>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
38 <data format="txt" name="ambiguity" label="${tool.name} on ${on_string}: ${run_name}.ambiguity"/>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
39 </outputs>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
40 <tests>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
41 <test>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
42 <param name="run_name" value="test"/>
1
5a7cd6c39085 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit c6f68e0efd9aa7e566289650ad126e0c7d192a8b"
iuc
parents: 0
diff changeset
43 <param name="fastq_input1" ftype="fastqsanger.gz" value="reads1.fastq.gz"/>
5a7cd6c39085 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit c6f68e0efd9aa7e566289650ad126e0c7d192a8b"
iuc
parents: 0
diff changeset
44 <param name="fastq_input2" ftype="fastqsanger.gz" value="reads2.fastq.gz"/>
0
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
45 <output name="c1_genotype4digits">
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
46 <assert_contents>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
47 <has_text text="A*24:02" />
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
48 </assert_contents>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
49 </output>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
50 </test>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
51 </tests>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
52 <help><![CDATA[
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
53
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
54 **seq2HLA** *HLA typing from RNA-Seq sequence reads*
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
55
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
56 Release: 2.2
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
57
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
58 seq2HLA_ is an in-silico method, written in python and R, which takes standard RNA-Seq sequence reads in fastq format
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
59 as input, uses a bowtie index comprising all HLA alleles and outputs the most likely HLA class I and class II genotypes (in 4 digit resolution),
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
60 a p-value for each call, and the expression of each class
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
61
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
62 **Inputs**
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
63
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
64 Paired read fastq files with illumina style IDs.
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
65
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
66
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
67 **Outputs**
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
68
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
69 1. <prefix>-ClassI.HLAgenotype2digits => 2 digit result of Class I
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
70 2. <prefix>-ClassII.HLAgenotype2digits => 2 digit result of Class II
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
71 3. <prefix>-ClassI.HLAgenotype4digits => 4 digit result of Class I
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
72 4. <prefix>-ClassII.HLAgenotype4digits => 4 digit result of Class II
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
73 5. <prefix>.ambiguity => reports typing ambuigities (more than one solution for an allele possible)
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
74 6. <prefix>-ClassI.expression => expression of Class I alleles
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
75 7. <prefix>-ClassII.expression => expression of Class II alleles
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
76
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
77
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
78 ClassI.HLAgenotype4digits
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
79
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
80 ======= ======== =========== ======== ============
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
81 #Locus Allele 1 Confidence Allele 2 Confidence
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
82 ======= ======== =========== ======== ============
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
83 A A*03:01 0.000510333 A*02:01' 0.0005975604
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
84 B B*50:01 0.001271273 B*58:02 3.52561e-05
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
85 C C*04:01 0.06362723 C*06:02 0.04725865
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
86 ======= ======== =========== ======== ============
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
87
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
88
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
89 ClassI.expression
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
90
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
91 ======= ======
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
92 #Locus RPKM
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
93 ======= ======
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
94 A 89.59
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
95 B 139.66
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
96 C 184.42
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
97 ======= ======
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
98
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
99
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
100 .. _seq2HLA: https://bitbucket.org/sebastian_boegel/seq2hla
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
101
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
102 ]]></help>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
103 <citations>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
104 <citation type="doi">10.1186/gm403</citation>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
105 </citations>
52bba1cd3823 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seq2hla commit 96f219ed86ce674def72c73393d3c29c87cb56e5"
iuc
parents:
diff changeset
106 </tool>