comparison dante.xml @ 0:a5f1638b73be draft

Uploaded
author petr-novak
date Wed, 26 Jun 2019 08:01:42 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a5f1638b73be
1 <tool id="dante" name="Domain based ANnotation of Transposable Elements - DANTE" version="1.0.0">
2 <requirements>
3 <requirement type="package">last</requirement>
4 <requirement type="package">numpy</requirement>
5 <requirement type="package" version="1.0.0">dante</requirement>
6 </requirements>
7 <stdio>
8 <regex match="Traceback" source="stderr" level="fail" description="Unknown error" />
9 <regex match="error" source="stderr" level="fail" description="Unknown error" />
10 </stdio>
11 <description> Tool for annotation of transposable elements based on the similarity to conserved protein domains database. </description>
12 <command>
13 python3 ${__tool_directory__}/dante.py --query ${input} --domain_gff ${DomGff}
14 --protein_database ${__tool_data_path__ }/protein_domains/${db_type}_pdb
15 --classification ${__tool_data_path__ }/protein_domains/${db_type}_class
16 </command>
17 <inputs>
18 <param format="fasta" type="data" name="input" label="Choose your input sequence" help="Input DNA must be in proper fasta format, multi-fasta containing more sequences is allowed" />
19
20 <param name="db_type" type="select" label="Select taxon and protein domain database version (REXdb)" help="">
21 <options from_file="rexdb_versions.txt">
22 <column name="name" index="0"/>
23 <column name="value" index="1"/>
24 </options>
25 </param>
26
27 </inputs>
28
29 <outputs>
30 <data format="gff3" name="DomGff" label="Unfiltered GFF3 file of ALL protein domains from dataset ${input.hid}" />
31 </outputs>
32
33 <help>
34
35 THIS IS A PRIMARY OUTPUT THAT SHOULD UNDERGO FURTHER QUALITY FILTERING TO GET RID OFF POTENTIAL FALSE POSITIVE DOMAINS
36
37 **WHAT IT DOES**
38
39 This tool uses external aligning programme `LAST`_ and RepeatExplorer database of TE protein domains(REXdb) (Viridiplantae and Metazoa)
40
41 .. _LAST: http://last.cbrc.jp/
42
43 *Lastal* runs similarity search to find hits between query DNA sequence and our database of protein domains from all Viridiplantae repetitive elements. Hits with overlapping positions in the sequence (even through other hits) forms a cluster which represents one potential protein domain. Strand orientation is taken into consideration when forming the clusters which means each cluster is built from forward or reverse stranded hits exclusively. The clusters are subsequently processed separately; within one cluster positions are scanned base-by-base and classification strings are assigned for each of them based on the database sequences which were mapped on that place. These asigned classification strings consist of a domain type as well as class and lineage of the repetitive element where the database protein comes from. Different classification levels are separated by "|" character. Every hit is scored according to the scoring matrix used for DNA-protein alignment (BLOSUM80). For single position only the hits reaching certain percentage (80% by default) of the overall best score within the whole cluster are reported. One cluster of overlapping hits represents one domain region and is recorded as one line in the resulting GFF3 file. Regarding the classition strings assigned to one region (cluster) there are three situations that can occur:
44
45 1. There is a single classification string assigned to each position as well as classifications along all the positions in the region are mutually uniform, in this case domain's final classification is equivalent to this unique classification.
46 2. There are multiple classification strings assigned to one cluster, i.e. one domain, which leads to classification to the common (less specific) level of all the strings
47 3. There is a conflict at the domain type level, domains are reported with slash (e.g. RT/INT) and the classification is in this case ambiguous
48
49 **There are 2 outputs produced by this tool:**
50
51 1. GFF3 file of all proteins domains built from all hits found by LAST. Domains are reported per line as regions (start - end) on the original DNA sequence including the seq ID, alignment score and strand orientation. The last "Attributes" column contains several semicolon-separated information related to annotation, repetitive classification, alignment and its quality. This file can undergo further filtering using *Protein Domain Filter* tool
52
53 - Attributes reported always:
54
55 Name
56 type of domain; if ambiguous reported with slash
57
58 Final_classification
59 definite classification based on all partial classifications of Region_hits_classifications attribute or
60 "Ambiguous_domain" when there is an ambiguous domain type
61
62 Region_Hits_Classifications
63 all hits classifications (comma separated) from a certain domain region that reach the set score threshold; in case of multiple annotations the square brackets indicate the number of bases having this particular classification
64
65 - Attributes only reported in case of unambiguous domain type (all the attributes including quality information are related to the Best_Hit of the region):
66
67 Best_hit
68 classification and position of the best alignment with the highest score within the cluster; in the square brackets is the percentage of the whole cluster range that this best hit covers
69
70 Best_Hit_DB_Pos
71 showing which part of the original datatabase domain corresponding to the Best Hit was aligned on query DNA (e.g. **Best_Hit_DB_Pos=17:75of79** means the Best Hit reported in GFF represents region from 17th to 75th of total 79 aminoacids in the original domain from the database)
72
73 DB_Seq
74 database protein sequence of the best hit mapped to the query DNA
75
76 Query_Seq
77 alignment sequence of the query DNA for the best hit
78
79 Identity
80 ratio of identical amino acids in alignment sequence to the length of alignment
81
82 Similarity
83 ratio of alignment positions with positive score (according to the scoring matrix) to the length of alignment
84
85 Relat_Length
86 ratio of gapless length of the aligned protein sequence to the whole length of the database protein
87
88 Relat_Interruptions
89 number of the interruptions (frameshifts + stop codons) in aligned translated query sequence per each starting 100 AA
90
91 Hit_to_DB_Length
92 proportion of alignment length to the original length of the protein domain from database
93
94
95
96 !NOTE: Tool can in average process 0.5 Gbps of the DNA sequence per day. This is only a rough estimate and it is highly dependent on input data (repetive elements occurence) as well as computing resources. Maximum running time of the tool is 7 days.
97
98 </help>
99 </tool>
100