RNA seq
0
0
Entering edit mode
2.4 years ago
rishav513 ▴ 30

I need help in writing a python code to automate the pipeline between two packages of RNA seq data as data output passed from bowtie will automatically become one of the input in tophat then output of tophat as input to cufflinks software as I am new to Python, I have experience only in R. So, I do not know how to do this.

Someone, please help.

rna-seq • 977 views
ADD COMMENT
1
Entering edit mode

You can easily do this in bash instead of python. Suppose that you have your fastq files in one single folder, you can do something like:

for i in $(ls *.fastq.gz | uniq);
do
bowtie input=${i} output=${i}.out &&
tophat input=${i}.out output=${i}.tophat.out
done;

Of course, that's just a small suggestion... Just write the proper code for your needs.

Hope it helps!

ADD REPLY
0
Entering edit mode

Thank you for your valuable suggestion.

ADD REPLY
0
Entering edit mode

It should be ${i} (the variable), not $(i) which is executing a subshell.

ADD REPLY
0
Entering edit mode

You're right... Thanks for pointing this out!

ADD REPLY

Login before adding your answer.

Traffic: 2092 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6