Mercurial > repos > petr-novak > dante_ltr
comparison dante_ltr_search.xml @ 0:7b0bbe7477c4 draft
"planemo upload commit 92c684dff3b377c8c08654c7f3d46a133385e3e0-dirty"
author | petr-novak |
---|---|
date | Tue, 08 Mar 2022 13:24:33 +0000 |
parents | |
children | c1498f679b50 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:7b0bbe7477c4 |
---|---|
1 <tool id="dante_ltr_search" name="DANTE_LTR transposable element identification" version="0.1.0" python_template_version="3.5"> | |
2 <requirements> | |
3 <requirement type="package">blast</requirement> | |
4 <requirement type="package">r-optparse</requirement> | |
5 <requirement type="package">bioconductor-bsgenome</requirement> | |
6 <requirement type="package">biocondutor-biostrings</requirement> | |
7 <requirement type="package">bioconductor-rtracklayer</requirement> | |
8 | |
9 </requirements> | |
10 <command detect_errors="exit_code"><![CDATA[ | |
11 Rscript ${__tool_directory__}/extract_putative_ltr.R --gff3 '$dante' --reference_sequence '$reference' --output output --cpu 32 | |
12 && | |
13 mv output.gff3 $te_ltr_gff | |
14 ]]></command> | |
15 <inputs> | |
16 <param type="data" name="dante" format="gff3" label="Filtered gff3 output from DANTE pipeline"/> | |
17 <param type="data" name="reference" format="fasta" label="Reference sequence matching DANTE output" /> | |
18 </inputs> | |
19 <outputs> | |
20 <data name="te_ltr_gff" format="gff3" label="Annotation of detected LTR transposable elements | |
21 based on the annotation $dante.hid and reference $reference.hid" /> | |
22 </outputs> | |
23 <help><![CDATA[ | |
24 This tool uses output from DANTE annotation pipeline to identify full length LTR | |
25 transposable elements. Output is in the GFF3 format and include annotation of | |
26 5' and 3' Longe Terminal Repeats, Target Site Duplication (TSD) and primer binding site (PBS). | |
27 | |
28 All identified elements contains complete set of protein domains as defined in | |
29 REXdb_. Based on the results detection structural feature, | |
30 elements falls into four categories: | |
31 | |
32 - elements with domains, 5'LTR, 3'LTR, TSD and PBS | |
33 - elements with domains, 5'LTR, 3'LTR and PBS (TSD was not found) | |
34 - elements with domains, 5' LTR, 3'LTR, TSD (PBS was not found) | |
35 - elements with protein domains, 5'LTR and 3'LTR (PBS and LDS were not found) | |
36 | |
37 .. _REXdb: https://doi.org/10.1186/s13100-018-0144-1 | |
38 | |
39 ]]></help> | |
40 </tool> |