SAM file generation problem
1
0
Entering edit mode
4.7 years ago

my SAM files generated are of 1.1kb each.. also the alignmnt is not done.. what to do??

rna-seq • 1.3k views
ADD COMMENT
0
Entering edit mode

Please put some more effort into your questions to get proper help.

  • What programs are you using?
  • Show us the complete commands you were using.
ADD REPLY
0
Entering edit mode
nohup hisat2 --dta -cufflinks -x ../5.Reference_genome/genome -1 ../4.Trimmed_fastq/SRR1131659_Trimmed_1.fastq.gz -2 ../4.Trimmed_fastq/SRR1131659_Trimmed_2.fastq.gz -S SRR1131659.sam -p 20 &

this was the command used for aligning the adapter trimmed fastq files against human refernce genome. the SRA data here is paired end rna seq data. Command used for adapter trimming is:

cutadapt -a AGATCGGAAGA -A AGATCGGAAGA -o SRR1131659_Trimmed_1.fastq.gz -p SRR1131659_Trimmed_2.fastq.gz -m 20 SRR1131659_R1.fastq.gz SRR1131659_R2.fastq.gz -q 30
ADD REPLY
1
Entering edit mode

In the future when you paste code examples, highlight your code and click the "101 010" button to make it a code block, makes it easier to read.

Formatting options

ADD REPLY
0
Entering edit mode

done. but it didnot work. same problem. no alignmnt done.

ADD REPLY
0
Entering edit mode

If it did not work then why did you accept the answer below?

ADD REPLY
0
Entering edit mode

I accepted the answer nd tried.. then saw that i didnt work..

ADD REPLY
0
Entering edit mode

Can show us the file sizes for your original and trimmed data, as well as your genome? One thing I notice is that in your cutadapt command, the quality filter (-q 30) is after the input files whereas in the documentation it's typically before.

If your trimmed files are suspiciously small I would guess that's the error.

ADD REPLY
0
Entering edit mode

raw data for r1 read is of size 502.3MB and that of r2 is of 498.8MB.. trimmed data for r1 is of 489.6MB and that of r2 is 486.6MB.. moreover, applying

-q 30before or after made no difference. Size of reference genome is 1.1GB(zipped file) and 4.5GB(when unzipped)

ADD REPLY
1
Entering edit mode

As I recall HISAT2 is one of those programs that is sensitive to order of program options and input files. So you may want to pay some attention to that order. Did you generate the indexes yourself and are they known to work?

ADD REPLY
0
Entering edit mode

yeah.. and it did generate the indexes for genome by myself.. nothing was mentioned about the adapteer sequence.. it used AGATCGGAAGA.. for both forward and reverse end reads. should i use AGATCGGAAGAGC as the adapter sequence fr both the end reads??

ADD REPLY
0
Entering edit mode

Specifying an incorrect adapter sequence should have no impact on being able to produce a good SAM file from HISAT2. It sounds like that is where your problem lies. Have you looked at the log file for HISAT2 to see if there are any errors that can be addressed?

ADD REPLY
0
Entering edit mode

initially i had used the command

cutadapt -a AGATCGGAAGA....and so on I mean i skipped the "-A adapter2" part keeping rest of the command same , initially for trimming.. but that command is for single end data..whereas my data is of paired end..That time SAM files generated were of 4.4GB each or more ..and BAM files were of around 1.2GB each. but problems started showing up (SAM files are being generated of 1.1kb each..and BAM files stop being executed after 800 bytes or so) when i used the cutadapt command mentioning both adapters 1 and 2;(the cutadapt command shown in the very 1st comment of mine)as shown below:

> cutadapt -a AGATCGGAAGA -A AGATCGGAAGA -o SRR1131659_Trimmed_1.fastq.gz -p SRR1131659_Trimmed_2.fastq.gz -m 20 SRR1131659_R1.fastq.gz SRR1131659_R2.fastq.gz -q 30
ADD REPLY
1
Entering edit mode
4.7 years ago

Change --dta -cufflinks to --dta-cufflinks.

ADD COMMENT

Login before adding your answer.

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