Hi,
Is it possible to use Tophat with .gz fastq file ?
Thanks,
N.
Hi,
Is it possible to use Tophat with .gz fastq file ?
Thanks,
N.
Yes. It will uncompress based on the filename extension.
If you ever have a program that doesn't accept gzipped input or you're not sure whether or not it accepts gzipped input, you can make it using UNIX pipes:
gzcat the_file.gz | program -in /dev/stdin ...
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Thanks a lot !