Mercurial > repos > jjohnson > defuse8
comparison defuse_trinity_analysis.xml @ 0:63f23d5db27c draft
planemo upload for repository https://github.com/jj-umn/galaxytools/tree/master/defuse commit 2c2fd38cb761ec57bac7a0bd376e6aa2b88265d0-dirty
| author | jjohnson |
|---|---|
| date | Mon, 20 May 2019 15:25:03 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:63f23d5db27c |
|---|---|
| 1 <?xml version="1.0"?> | |
| 2 <tool id="defuse_trinity_analysis" name="Defuse Trinity" version="@DEFUSE_VERSION@.2"> | |
| 3 <description>verify fusions with trinity</description> | |
| 4 <macros> | |
| 5 <import>macros.xml</import> | |
| 6 </macros> | |
| 7 <command detect_errors="default"><![CDATA[ | |
| 8 python $__tool_directory__/defuse_trinity_analysis.py --input $defuse_results --transcripts $trinity_transcripts --peptides $trinity_orfs | |
| 9 --nbases $nbases --min_pep_len $min_pep_len --ticdist $ticdist --readthrough=$readthrough | |
| 10 #if 'matched' in str($outputs).split(','): | |
| 11 --matched="$matched_output" | |
| 12 #end if | |
| 13 #if 'aligned' in str($outputs).split(','): | |
| 14 --transcript_alignment="$aligned_output" | |
| 15 #end if | |
| 16 --output $output | |
| 17 ]]></command> | |
| 18 <inputs> | |
| 19 <param name="defuse_results" type="data" format="defuse.results.tsv" label="Defuse Results file"/> | |
| 20 <param name="trinity_transcripts" type="data" format="fasta" label="TrinityRNAseq: Assembled Transcripts"/> | |
| 21 <param name="trinity_orfs" type="data" format="fasta" label="transcriptsToOrfs: Candidate Peptide Sequences"/> | |
| 22 <param name="nbases" type="integer" value="12" min="1" label="Number of bases on either side of the fusion to compare"/> | |
| 23 <param name="min_pep_len" type="integer" value="100" min="0" label="Minimum length of peptide to report"/> | |
| 24 <param name="ticdist" type="integer" value="1000000" min="0" label="Maximum intrachromosomal distance to be classified a Transcription-induced chimera (TIC)"/> | |
| 25 <param name="readthrough" type="integer" value="4" min="0" label="Number of stop_codons to read through"/> | |
| 26 <param name="outputs" type="select" multiple="true" display="checkboxes" label="Additional outputs"> | |
| 27 <option value="matched">Matched Fusions Trinity Tanscripts and ORFs Tabular</option> | |
| 28 <option value="aligned">Aligned Fusion and Trinity Transcipts Fasta</option> | |
| 29 </param> | |
| 30 </inputs> | |
| 31 <outputs> | |
| 32 <data name="matched_output" metadata_source="defuse_results" format="tabular" label="${tool.name} on ${on_string}: Fusions Trinity Matched "> | |
| 33 <filter>(outputs and 'matched' in outputs)</filter> | |
| 34 </data> | |
| 35 <data name="aligned_output" metadata_source="defuse_results" format="fasta" label="${tool.name} on ${on_string}: Fusion Trinity Sequences"> | |
| 36 <filter>(outputs and 'aligned' in outputs)</filter> | |
| 37 </data> | |
| 38 <data name="output" metadata_source="defuse_results" format="tabular" label="${tool.name} on ${on_string}: Fusion Report"/> | |
| 39 </outputs> | |
| 40 <tests> | |
| 41 </tests> | |
| 42 <help> | |
| 43 **Defuse Results** | |
| 44 | |
| 45 Verifies DeFuse_ fusion predictions in results.tsv with TrinityRNAseq_ assembled transcripts and ORFs. | |
| 46 | |
| 47 DeFuse provides a total fusion sequence of 200-500 nucleotides (nts) around the fusion breakpoint. This may be insufficient to predict the effect of the fusion on protein production. To get a view of the full transcript containing the fusion, Trinity de novo transcripts from the RNA-seq data are compared with the deFuse fusion sequences using a subsequence around the deFuse indetified fusion breakpoint. The Trinity transcriptToOrfs output provides potential proteins from the projected fusion transcript. | |
| 48 | |
| 49 This program relies on the header line of the deFuse results.tsv to determine which columns to use for analysis. | |
| 50 | |
| 51 .. _DeFuse: http://sourceforge.net/apps/mediawiki/defuse | |
| 52 .. _TrinityRNAseq: http://trinityrnaseq.github.io/ | |
| 53 </help> | |
| 54 <expand macro="citations"> | |
| 55 <citation type="doi">10.1038/nbt.1883</citation> | |
| 56 <citation type="doi">10.1038/s41598-018-36840-z</citation> | |
| 57 </expand> | |
| 58 </tool> |
