annotate migmap.xml @ 1:fbbe507e692b draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/migmap commit 9028fa28c7b3216926bf999dd21c5f156d1cc63e
author iuc
date Sat, 04 Aug 2018 12:22:14 -0400
parents b2f1cf977ca9
children 6ad9d48a512e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
fbbe507e692b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/migmap commit 9028fa28c7b3216926bf999dd21c5f156d1cc63e
iuc
parents: 0
diff changeset
1 <tool id="migmap" name="MiGMAP" version="1.0.2.2">
0
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
2 <description>mapper for full-length T- and B-cell repertoire sequencing
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
3 </description>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
4 <requirements>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
5 <requirement type="package" version="1.0.2">migmap</requirement>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
6 </requirements>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
7 <command detect_errors='exit_code'><![CDATA[
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
8 export IGBLAST_PATH=\$(dirname \$(which igblastn)) &&
1
fbbe507e692b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/migmap commit 9028fa28c7b3216926bf999dd21c5f156d1cc63e
iuc
parents: 0
diff changeset
9 mkdir temp_db &&
fbbe507e692b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/migmap commit 9028fa28c7b3216926bf999dd21c5f156d1cc63e
iuc
parents: 0
diff changeset
10 ln -s "\${IGBLAST_PATH}/../share/igblast/" ./temp_db/ &&
fbbe507e692b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/migmap commit 9028fa28c7b3216926bf999dd21c5f156d1cc63e
iuc
parents: 0
diff changeset
11
0
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
12 #if $input.is_of_type('fasta') :
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
13 ln -s '$input' in.fa &&
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
14 #else
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
15 ln -s '$input' in.fq &&
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
16 #end if
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
17 migmap
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
18 $allow_incomplete
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
19 $allow_no_cdr3
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
20 $allow_noncanonical
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
21 $allow_noncoding
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
22 $all_alleles
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
23 $by_read
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
24 #if str($qual_threshold):
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
25 -q $qual_threshold
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
26 #end if
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
27 -p "\${GALAXY_SLOTS:-4}"
1
fbbe507e692b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/migmap commit 9028fa28c7b3216926bf999dd21c5f156d1cc63e
iuc
parents: 0
diff changeset
28 --data-dir ./temp_db/igblast/
0
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
29 -S $species
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
30 -R $receptor_list
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
31 #if $input.is_of_type('fasta'):
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
32 in.fa
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
33 #else
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
34 in.fq
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
35 #end if
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
36 '$output'
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
37 ]]></command>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
38 <inputs>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
39 <param type="data" name="input" format="fasta,fastq"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
40 <param type="select" name="species" label="Species" value='human'>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
41 <option value='human' selected='true'>Human</option>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
42 <option value='mouse'>Mouse</option>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
43 <option value='rat'>Rat</option>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
44 <option value='rabbit'>Rabbit</option>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
45 <option value='rhesus_monkey'>Rhesus monkey</option>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
46 </param>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
47 <param type="select" name="receptor_list" label="Receptor and Chain" multiple='true' value='IGH'>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
48 <option value='IGH' selected='true'>IGH</option>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
49 <option value='IGL'>IGL</option>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
50 <option value='IGK'>IGK</option>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
51 <option value='TRA'>TRA</option>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
52 <option value='TRB'>TRB</option>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
53 <option value='TRG'>TRG</option>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
54 <option value='TRD'>TRD</option>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
55 </param>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
56 <param name="qual_threshold" type="integer" label="Quality Theshold" optional="true"
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
57 help="Threshold for average quality of mutations and N-regions of CDR3 (only relevant for fastq input)"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
58 <param name="allow_incomplete" type="boolean" label="Report clonotypes with partial CDR3 mapping" checked="false"
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
59 truevalue="--allow-incomplete" falsevalue=""/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
60 <param name="all_alleles" type="boolean"
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
61 label="use all alleles during alignemt (default = only major (*01) alleles)" checked='false'
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
62 truevalue="--all-alleles" falsevalue=""/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
63 <param name="allow_no_cdr3" type="boolean" label="Report clonotypes with no CDR3" checked='false'
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
64 truevalue="--allow-no-cdr3" falsevalue=""/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
65 <param name="allow_noncanonical" type="boolean" label="Report clonotypes that have non-canonical CDR3"
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
66 checked='false'
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
67 truevalue="--allow-noncanonical" falsevalue=""/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
68 <param name="allow_noncoding" type="boolean" label="Report non-coding clonotypes (stop codon or frameshift)"
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
69 checked='false'
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
70 truevalue="--allow-noncoding" falsevalue=""/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
71 <param name="by_read" type="boolean" label="Report mapping details for each read" checked='false'
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
72 truevalue="--by-read" falsevalue=""/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
73 </inputs>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
74 <outputs>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
75 <data name="output" format="tabular"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
76 </outputs>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
77 <tests>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
78 <test>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
79 <param name="input" value="test_stop_codon.fa"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
80 <param name="allow_noncoding" value="--allow-noncoding"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
81 <param name="by_read" value="--by-read"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
82 <param name="allow_noncanonical" value="--allow-noncanonical"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
83 <param name="allow_no_cdr3" value="--allow-no-cdr3"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
84 <param name="allow_incomplete" value="--allow-incomplete"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
85 <param name="all_alleles" value="--all-alleles"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
86 <output name="output" file="test_stop_codon.out"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
87 </test>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
88 <test>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
89 <param name="allow_noncoding" value="--allow-noncoding"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
90 <param name="by_read" value="--by-read"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
91 <param name="input" value="test_out_of_frame.fa"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
92 <output name="output" file="test_out_of_frame.out"/>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
93 </test>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
94 </tests>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
95 <help><![CDATA[
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
96
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
97 This software is a smart wrapper for the IgBlast V-(D)-J mapping tool designed to facilitate analysis immune
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
98 receptor libraries profiled using high-throughput sequencing
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
99
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
100 ]]></help>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
101 <citations>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
102 <citation type="bibtex">
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
103 @misc{githubmigmap,
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
104 author = {Shugay, Mikhail},
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
105 year = {2015},
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
106 title = {migmap},
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
107 publisher = {GitHub},
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
108 journal = {GitHub repository},
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
109 url = {https://github.com/mikessh/migmap},
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
110 }
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
111 </citation>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
112 </citations>
b2f1cf977ca9 planemo upload for repository https://github.com/mikessh/migmap commit 6d79114dd74ef2ee3071a100d1e8cd6d2df50caa
iuc
parents:
diff changeset
113 </tool>