Mercurial > repos > cpt > cpt_putative_isp
comparison generate-putative-isp.xml @ 1:4e02e6e9e77d draft
planemo upload commit 94b0cd1fff0826c6db3e7dc0c91c0c5a8be8bb0c
author | cpt |
---|---|
date | Mon, 05 Jun 2023 02:51:35 +0000 |
parents | |
children | 0a02ef22ce17 |
comparison
equal
deleted
inserted
replaced
0:10d13d0c37d3 | 1:4e02e6e9e77d |
---|---|
1 <tool id="edu.tamu.cpt2.spanin.generate-putative-isp" name="ISP candidates" version="1.0"> | |
2 <description>constructs a putative list of potential i-spanin from an input genomic FASTA</description> | |
3 <macros> | |
4 <import>macros.xml</import> | |
5 <import>cpt-macros.xml</import> | |
6 </macros> | |
7 <expand macro="requirements"> | |
8 </expand> | |
9 <command detect_errors="aggressive"><![CDATA[ | |
10 python '$__tool_directory__/generate-putative-isp.py' | |
11 '$fasta_file' | |
12 --strand '$strand' | |
13 --switch '$switch' | |
14 --isp_on '$isp_on' | |
15 --isp_op '$isp_op' | |
16 --isp_ob '$isp_ob' | |
17 --isp_og '$isp_og' | |
18 --isp_min_len '$isp_min_len' | |
19 --isp_min_dist '$isp_min_dist' | |
20 --isp_max_dist '$isp_max_dist' | |
21 --min_tmd_size '$min_tmd_size' | |
22 --max_tmd_size '$max_tmd_size' | |
23 --putative_isp '$putative_isp' | |
24 --summary_isp_txt '$summary_isp' | |
25 --putative_isp_gff '$putative_isp_gff' | |
26 --isp_max '$isp_max' | |
27 --peri_min '$peri_min' | |
28 --peri_max '$peri_max' | |
29 | |
30 ]]></command> | |
31 <inputs> | |
32 <param type="select" label="Strand Choice" name="strand"> | |
33 <option value="both">both</option> | |
34 <option value="forward">+</option> | |
35 <option value="reverse">-</option> | |
36 </param> | |
37 <param label="Single Genome FASTA" name="fasta_file" type="data" format="fasta"/> | |
38 <param label="i-spanin minimal length" name="isp_min_len" type="integer" value="60"/> | |
39 <param label="i-spanin maximum length" name="isp_max" type="integer" value="230"/> | |
40 <param label="Range Selection; default is all; for a specific range to check for a spanin input integers separated by a colon (eg. 1000:2000)" type="text" name="switch" value="all"/> | |
41 <param label="TMD minimal distance from start codon" name="isp_min_dist" type="integer" value="10"/> | |
42 <param label="TMD maximum distance from start codon" name="isp_max_dist" type="integer" value="35" help="Searches for a TMD between TMDmin and TMDmax ie [TMDmin,TMDmax]"/> | |
43 <param label="TMD minimal size" name="min_tmd_size" type="integer" value="10"/> | |
44 <param label="TMD maximum size" name="max_tmd_size" type="integer" value="25"/> | |
45 <param label="Periplasmic minimal residue amount" name="peri_min" type="integer" value="16"/> | |
46 <param label="Periplasmic maximum residue amount" name="peri_max" type="integer" value="206"/> | |
47 </inputs> | |
48 <outputs> | |
49 <data format="fasta" name="isp_on" label="NucSequences.fa" hidden="true"/> | |
50 <data format="fasta" name="isp_op" label="ProtSequences.fa" hidden="true"/> | |
51 <data format="bed" name="isp_ob" label="BED_Output.bed" hidden="true"/> | |
52 <data format="gff3" name="isp_og" label="GFF_Output.gff" hidden="true"/> | |
53 <data format="fasta" name="putative_isp" label="putative_isp.fa"/> | |
54 <data format="txt" name="summary_isp" label="summary_isp.txt"/> | |
55 <data format="gff3" name="putative_isp_gff" label="putative_isp.gff3"/> | |
56 </outputs> | |
57 <help><![CDATA[ | |
58 | |
59 **What it does** | |
60 Searches a genome for candidate i-spanins (ISPs), a phage protein involved in outer membrane disruption during Gram-negative bacterial host cell lysis. | |
61 | |
62 **METHODOLOGY** | |
63 | |
64 Locates ALL potential start sequences, based on TTG / ATG / GTG (M / L / V). This list is pared down to those within the user-set min/max lengths. That filtered list generates a set of files with the ORFs in FASTA (nt and aa), BED, and GFF3 file formats. | |
65 | |
66 With the protein FASTA, the tool next reads in each potential sequence and determines if it has a putative transmembrane domain (TMD) with the following criteria: | |
67 | |
68 1. Presence of snorkeling Lysine residues surrounded by hydrophobic residues described for TMD below, within the range the user specifies. | |
69 2. A putative transmembrane domain, or TMD, defined as a repeated hydrophobic region within the sequence ([FIWLVMYCATGSP]), of length and position within the range the user inputs. | |
70 3. Length of expected periplasmic region. User defines minimum and maximum thresholds for required number of residues after TMD. | |
71 | |
72 **INPUT** --> Genomic FASTA | |
73 *NOTE: This tool only takes a SINGLE genomic fasta. It does not work with multiFASTAs.* | |
74 | |
75 **OUTPUT** --> putative_isp.fa (FASTA) file, putative_isp.gff3, and basic summary statistics as summary_isp.txt. | |
76 | |
77 Protein sequences which passed the above filters are returned as the candidate ISPs. | |
78 | |
79 ]]></help> | |
80 <expand macro="citations-crr"/> | |
81 </tool> |