Conversion of Fastq.gz to text file
1
0
Entering edit mode
7.6 years ago
Ahmad_Bio • 0

Hi,

I am new to bioinformatics, so would like to ask basic questions. I received data in fastq.gz format (Illumina data, R1 and R2 files). How can I convert this to *.txt format using some tools to visualize reads.

Furthermore, can someone recommend guideline, how to utilize fastq files for further analysis, removing barcodes, join paired ends, picking OTUs.

Thank you community,

Fastq illumina • 10k views
ADD COMMENT
2
Entering edit mode
7.6 years ago
EagleEye 7.5k

You question is not clear. First of all why do you want to visualize FASTQ files? What are these samples RNAseq, DNA, exome etc? Each follows different bioinformatics pipelines.

If you want to check the file over command line use this on your Linux terminal,

zcat input.fq.gz | head

Most of the quality control tools and aligners support FASTQ files as compressed formats such as .gz. If you still want your file as plain text format (uncompressed, takes lot of space some time 10 times to your compressed file). The following is the Linux command to uncompress .gz files,

gunzip -d input.fastq.gz

Information about FASTQ files.

What do you mean by join paired-ends?

This is one of the available bioinformatics protocol for rnaseq, you can try these steps (if RNAseq),

A: Any One please provide protocol for Analysing long noncoding RNA illumina NGS da

After alignment step (3rd) the BAM/SAM files will be generated and you can use browsers like IGV to visualize your mapped reads from bam files.

Information about BAM/SAM file format.

ADD COMMENT

Login before adding your answer.

Traffic: 2710 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