annotate generate-putative-usp.xml @ 3:76a3830e9cb1 draft

planemo upload commit 09a88823322bf86d7f05f008f9dabdb60a572d3a
author cpt
date Fri, 20 Sep 2024 03:52:29 +0000
parents aacd746d1c8b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
1 <tool id="edu.tamu.cpt2.spanin.generate-putative-usp" name="USP Candidates" version="1.0">
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
2 <description>constructs a putative list of potential u-spanin from an input genomic FASTA</description>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
3 <macros>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
4 <import>macros.xml</import>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
5 </macros>
3
76a3830e9cb1 planemo upload commit 09a88823322bf86d7f05f008f9dabdb60a572d3a
cpt
parents: 2
diff changeset
6 <requirements>
76a3830e9cb1 planemo upload commit 09a88823322bf86d7f05f008f9dabdb60a572d3a
cpt
parents: 2
diff changeset
7 <requirement type="package" version="3.9">python</requirement>
76a3830e9cb1 planemo upload commit 09a88823322bf86d7f05f008f9dabdb60a572d3a
cpt
parents: 2
diff changeset
8 <requirement type="package" version="1.84">biopython</requirement>
76a3830e9cb1 planemo upload commit 09a88823322bf86d7f05f008f9dabdb60a572d3a
cpt
parents: 2
diff changeset
9 <requirement type="package" version="2024.9.11">regex</requirement>
76a3830e9cb1 planemo upload commit 09a88823322bf86d7f05f008f9dabdb60a572d3a
cpt
parents: 2
diff changeset
10 </requirements>
1
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
11 <command detect_errors="aggressive"><![CDATA[
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
12 python '$__tool_directory__/generate-putative-usp.py'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
13 '$fa'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
14 --strand '$strand'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
15 --min_size '$min_size'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
16 --max_size '$max_size'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
17 --lipo_min_start '$lipo_min_start'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
18 --lipo_max_start '$lipo_max_start'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
19 --min_lipo_after '$min_lipo_after'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
20 --max_lipo_after '$max_lipo_after'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
21 --tmd_min_start '$tmd_min_start'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
22 --tmd_max_start '$tmd_max_start'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
23 --tmd_min_size '$tmd_min_size'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
24 --tmd_max_size '$tmd_max_size'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
25 --putative_usp_gff '$putative_usp_gff'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
26 --summary_usp_txt '$summary_usp'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
27 --putative_usp '$putative_usp'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
28 --usp_og '$usp_og'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
29 --usp_ob '$usp_ob'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
30 --usp_op '$usp_op'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
31 --usp_on '$usp_on'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
32 --switch '$switch'
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
33 ]]></command>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
34 <inputs>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
35 <param label="FASTA" name="fa" type="data" format="fasta"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
36 <param type="select" label="Strand Choice" name="strand">
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
37 <option value="both">both</option>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
38 <option value="forward">+</option>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
39 <option value="reverse">-</option>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
40 </param>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
41 <param label="u-spanin minimal length" type="integer" name="min_size" value="100"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
42 <param label="u-spanin maximum length" type="integer" name="max_size" value="200"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
43 <param label="Range Selection; default is all; slices are based on NT. Separated by a colon (eg. #:#)" name="switch" type="text" value="all"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
44 <param label="TMD minimal distance from start codon" type="integer" name="tmd_min_start" value="75"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
45 <param label="TMD maximum distance from start codon" type="integer" name="tmd_max_start" value="200"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
46 <param label="TMD minimal size" type="integer" name="tmd_min_size" value="15"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
47 <param label="TMD maximum size" type="integer" name="tmd_max_size" value="25"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
48 <param label="Lipobox minimal distance from start codon" type="integer" name="lipo_min_start" value="10"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
49 <param label="Lipobox maximum distance from start codon" type="integer" name="lipo_max_start" value="30"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
50 <param label="Minimum amount of periplasmic residues after Lipobox" type="integer" name="min_lipo_after" value="60"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
51 <param label="Maximum amount of periplasmic residues after Lipobox" type="integer" name="max_lipo_after" value="160"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
52 </inputs>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
53 <outputs>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
54 <data format="fasta" name="usp_on" label="NucSequences.fa" hidden="true"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
55 <data format="fasta" name="usp_op" label="ProtSequences.fa" hidden="true"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
56 <data format="bed" name="usp_ob" label="BED_Output.bed" hidden="true"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
57 <data format="gff3" name="usp_og" label="GFF_Output.gff" hidden="true"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
58 <data format="fasta" name="putative_usp" label="putative_usp.fa"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
59 <data format="txt" name="summary_usp" label="summary_usp.txt"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
60 <data format="gff3" name="putative_usp_gff" label="putative_usp.gff3"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
61 </outputs>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
62 <tests>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
63 <test>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
64 <param name="fa" value="t1.fa"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
65 <param name="min-size" value="100"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
66 <param name="max-size" value="200"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
67 <param name="switch" value="all"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
68 <param name="tmd_min_start" value="75"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
69 <param name="tmd_max_start" value="200"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
70 <param name="tmd_min_size" value="15"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
71 <param name="tmd_max_size" value="25"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
72 <param name="lipo_min_start" value="15"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
73 <param name="lipo_max_start" value="30"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
74 <param name="min_lipo_after" value="60"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
75 <param name="max_lipo_after" value="160"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
76 <param name="select" value="1"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
77 <output name="usp_on" file="_out_usp.fna"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
78 <output name="usp_op" file="_out_usp.fa"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
79 <output name="usp_ob" file="_out_usp.bed"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
80 <output name="usp_og" file="_out_usp.gff3"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
81 <output name="putative_usp" file="_putative_usp.fa"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
82 <output name="summary_usp" file="_summary_usp.txt"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
83 <output name="putative_usp_gff" file="_putative_usp.gff3"/>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
84 </test>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
85 </tests>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
86 <help><![CDATA[
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
87
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
88 **What it does**
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
89 Searches a genome for candidate u-spanins (USPs), a phage protein involved in outer membrane disruption during Gram-negative bacterial host cell lysis.
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
90
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
91
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
92 **METHODOLOGY**
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
93 This tool combines the methods used in the ISP and OSP Candidates tools to search for putative transmembrane domains and lipoboxes. See those tools for additional detail. Within user-set parameters, the following residues are allowed:
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
94
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
95 Hydrophobic residues allowed in TMD:
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
96
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
97 * [FIWLVMYCATGSP]
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
98
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
99 Lipobox patterns:
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
100
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
101 * [ILMFTV][^REKD][GAS]C
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
102 * A W[AGS]C
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
103
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
104 **INPUT** --> Genomic FASTA
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
105 *Note* - Use a single genome fasta. Multiple FASTAs will not work.
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
106
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
107 **OUTPUT** -->
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
108 Protein sequences which passed the above filters are returned as the candidate USPs in three files: a protein FASTA file, a GFF3, and basic summary statistics text file.
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
109 .
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
110
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
111 ]]></help>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
112 <citations>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
113 <citation type="doi">10.1371/journal.pcbi.1008214</citation>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
114 <citation type="doi">https://dx.doi.org/10.1016/bs.aivir.2018.09.003</citation>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
115 <citation type="bibtex">
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
116 @unpublished{galaxyTools,
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
117 author = {C. Ross},
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
118 title = {CPT Galaxy Tools},
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
119 year = {2020-},
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
120 note = {https://github.com/tamu-cpt/galaxy-tools/}
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
121 }
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
122 </citation>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
123 </citations>
f7afd1480d0f planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
cpt
parents:
diff changeset
124 </tool>