Entering edit mode
5.0 years ago
ja4123
▴
30
Hello, I am using HISAT2 for aligning transcripts to the reference genome. I have build the indexes first. And try the command as follows:
hisat2-build -p 8 --dta -x name_tran -1 input1.fastq.gz -2 input2.fastq.gz -S out.sam
However, I am getting the following error:
Error: Encountered internal HISAT2 exception (#1)
Kindly help.
Command you posted has a typo/is incorrect (
hisat2-bulit -p 8 --dta -x name_tran -1 input1.fastq.gz -2 input2.fastq.gz -S out.sam
). It is not a command that you would use for the alignment.I am useing this procedure:
That is an example
From Nature protocol "Transcript-level expression analysis of RNA-seq experiments with HISAT, StringTie and Ballgown"
Are you using the latest
hisat
version available?You know, I have change the command:
And now I have error like this:
But they are fastq files ..
Answering youre question: No, I have hisat2-2.0.1 beta
What do you get when you run these commands
file input1.fastq.gz
andfile input2.fastq.gz
?Ok. So these files appear to be in the right format. How much memory do you have available on your machine?
Are you able to successfully run:
Output of youre command:
After mine change:
I get the same error:
Memory is about 80 GB
It is puzzling that you are not able to find the
hisat2
wrapper. You are not supposed to runhisat-align
directly.