annotate ngsderive_strandedness.xml @ 0:7201470d2f3b draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
author iuc
date Fri, 09 Jan 2026 09:56:54 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
1 <tool id="ngsderive_strandedness" name="ngsderive strandedness" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="23.0">
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
2 <description>infers strandedness from RNA-seq BAM files</description>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
3 <macros>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
4 <token name="@TOOL_VERSION@">4.0.0</token>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
5 <token name="@VERSION_SUFFIX@">0</token>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
6 </macros>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
7 <requirements>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
8 <requirement type="package" version="@TOOL_VERSION@">ngsderive</requirement>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
9 </requirements>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
10 <command detect_errors="exit_code"><![CDATA[
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
11 ln -s '${alignment_input}' input.bam &&
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
12 ln -s '${alignment_input.metadata.bam_index}' input.bam.bai &&
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
13 ln -s '${gtf_input}' annotation.${gtf_input.ext} &&
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
14
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
15 ngsderive strandedness
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
16 input.bam
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
17 -g annotation.${gtf_input.ext}
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
18 -n $n_genes
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
19 -m $min_reads_per_gene
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
20 -q $mapq
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
21 $split_by_rg
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
22 > '${output}'
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
23 ]]></command>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
24 <inputs>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
25 <param name="alignment_input" type="data" format="bam" label="Input alignment file" help="Aligned paired-end RNA-seq reads in BAM format."/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
26 <param name="gtf_input" type="data" format="gtf,gtf.gz" label="Gene annotation file (GTF)" help="Gene model in GTF format. The file will be automatically sorted and indexed if necessary."/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
27 <param argument="-n" name="n_genes" type="integer" value="1000" min="1" label="Number of genes to sample" help="Number of random genes to sample for strandedness inference."/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
28 <param argument="-m" name="min_reads_per_gene" type="integer" value="10" min="1" label="Minimum reads per gene" help="Minimum number of reads per gene required for inclusion in the analysis."/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
29 <param argument="-q" name="mapq" type="integer" value="30" min="0" label="Minimum mapping quality (MAPQ)" help="Minimum MAPQ score for a read to be considered."/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
30 <param argument="--split-by-rg" type="boolean" truevalue="--split-by-rg" falsevalue="" checked="false" label="Split results by read group" help="Output one entry per read group in addition to an overall entry."/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
31 </inputs>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
32 <outputs>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
33 <data name="output" format="tabular" label="${tool.name} on ${on_string}">
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
34 <actions>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
35 <action name="column_names" type="metadata" default="File,ReadGroup,TotalReads,ForwardPct,ReversePct,Predicted"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
36 </actions>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
37 </data>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
38 </outputs>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
39 <tests>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
40 <!-- Test forward-stranded data -->
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
41 <test expect_num_outputs="1">
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
42 <param name="alignment_input" value="forward_stranded.bam"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
43 <param name="gtf_input" value="strandedness_test.gtf"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
44 <output name="output">
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
45 <assert_contents>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
46 <has_n_columns n="6"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
47 <has_text text="Stranded-Forward"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
48 </assert_contents>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
49 </output>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
50 </test>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
51 <!-- Test reverse-stranded data -->
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
52 <test expect_num_outputs="1">
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
53 <param name="alignment_input" value="reverse_stranded.bam"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
54 <param name="gtf_input" value="strandedness_test.gtf"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
55 <output name="output">
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
56 <assert_contents>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
57 <has_n_columns n="6"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
58 <has_text text="Stranded-Reverse"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
59 </assert_contents>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
60 </output>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
61 </test>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
62 <!-- Test unstranded data -->
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
63 <test expect_num_outputs="1">
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
64 <param name="alignment_input" value="unstranded.bam"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
65 <param name="gtf_input" value="strandedness_test.gtf"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
66 <output name="output">
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
67 <assert_contents>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
68 <has_n_columns n="6"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
69 <has_text text="Unstranded"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
70 </assert_contents>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
71 </output>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
72 </test>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
73 <!-- Test with gzipped GTF annotation file -->
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
74 <test expect_num_outputs="1">
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
75 <param name="alignment_input" value="reverse_stranded.bam"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
76 <param name="gtf_input" value="strandedness_test.gtf.gz" ftype="gtf.gz"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
77 <output name="output">
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
78 <assert_contents>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
79 <has_n_columns n="6"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
80 <has_text text="Stranded-Reverse"/>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
81 </assert_contents>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
82 </output>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
83 </test>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
84 </tests>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
85 <help><![CDATA[
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
86 **What it does**
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
87
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
88 ngsderive strandedness infers the strandedness protocol used to generate RNA-seq data by
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
89 analyzing read alignments against a gene model. It can determine whether your data was
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
90 generated using a Stranded-Forward, Stranded-Reverse, or Unstranded protocol.
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
91
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
92 This tool is useful when you have RNA-seq data but are unsure about the library preparation
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
93 protocol used. Knowing the correct strandedness is essential for accurate gene expression
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
94 quantification.
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
95
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
96 **How it works**
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
97
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
98 The tool randomly samples genes from the provided gene model and examines how reads align
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
99 to those genes. Based on the proportion of reads mapping in the forward vs reverse orientation,
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
100 it classifies the library as:
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
101
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
102 - **Unstranded**: ~40-60% forward reads
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
103 - **Stranded-Forward**: ≥80% forward reads
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
104 - **Stranded-Reverse**: ≥80% reverse reads
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
105 - **Inconclusive**: Results don't clearly indicate a strandedness type
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
106
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
107 **Inputs**
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
108
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
109 - **Alignment file**: Paired-end RNA-seq alignments in BAM format
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
110 - **Gene annotation**: GTF file with gene models (gzipped GTF supported)
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
111
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
112 **Output**
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
113
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
114 A tabular file with the following columns:
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
115
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
116 - **File**: Name of the input BAM file
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
117 - **ReadGroup**: Read group identifier (or "overall" for combined results)
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
118 - **TotalReads**: Number of reads used in the analysis
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
119 - **ForwardPct**: Percentage of reads supporting forward strandedness
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
120 - **ReversePct**: Percentage of reads supporting reverse strandedness
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
121 - **Predicted**: The inferred strandedness (Stranded-Forward, Stranded-Reverse, Unstranded, or Inconclusive)
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
122
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
123 **Notes**
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
124
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
125 - Only paired-end reads are currently supported
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
126 - For best results, ensure your BAM file has sufficient read depth
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
127
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
128 For more information, see the `ngsderive documentation <https://stjudecloud.github.io/ngsderive/subcommands/strandedness/>`_.
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
129 ]]></help>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
130 <citations>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
131 <citation type="bibtex">
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
132 @software{ngsderive,
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
133 author = {{St. Jude Cloud Team}},
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
134 title = {ngsderive: Forensic analysis tool for NGS data},
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
135 url = {https://github.com/stjudecloud/ngsderive},
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
136 year = {2020}
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
137 }
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
138 </citation>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
139 </citations>
7201470d2f3b planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/main/tools/ngsderive commit 431830f24865316ab81526f053c171abf9f09529
iuc
parents:
diff changeset
140 </tool>