comparison get_reads/get_read.xml @ 62:58df1060fea1 draft

Uploaded
author tyty
date Tue, 18 Nov 2014 15:53:42 -0500
parents 6747060cdfe6
children
comparison
equal deleted inserted replaced
61:563b7b27cb52 62:58df1060fea1
1 <tool id="get_read_pipeline" name="Get RT Stop Counts" version="1.0">
2 <description></description>
3 <command interpreter="python">get_read.py $lib_file $map_file $output </command>
4 <requirements>
5 <requirement type="package" version="1.61">biopython</requirement>
6 <requirement type="package" version="1.7.1">numpy</requirement>
7 <requirement type="package" version="0.1.18">samtools</requirement>
8 </requirements>
9 <inputs>
10 <param name="lib_file" type="data" format="fasta" label="Reference genome/transcriptome"/>
11 <param name="map_file" type="data" format="bam" label="Mapped file"/>
12 </inputs>
13 <outputs>
14 <data name="output" format="txt"/>
15 </outputs>
16 <tests>
17 <test>
18 <param name="lib_file" value="test.bam" />
19 <param name="map_file" value="com_rna.txt" />
20 <output name="output" file="get_RT_stop_test.out" />
21 </test>
22 </tests>
23 <help>
24
25
26 **TIPS**:
27
28 -----
29
30 **Input**
31
32 * 1. A mapped (bam) file from Bowtie (or any other mapping program)
33 * 2. Reference library sequences (fasta) used to map the reads to
34
35 -----
36
37 **Output**:
38
39 A text file with reverse transcription stop counts mapped to each nucleotide (RTSC file)
40
41
42
43 </help>
44 </tool>