hisat2-align exited with value 1
1
0
Entering edit mode
10 months ago
Ahmed ▴ 10

I am a beginner with command and bioinformatics I am trying to alignment with HISAT2 for RNA seq so first I install the HISTA2 by bioconda using this command:

 bioconda -c install hisat2 

After that I made index for my reference genome with this command:

 hisat2-build -p 3 Danio_rerio.GRCz11.cdna.all.fa /home/ngs/zebra_fish 

The output my reference genome with this names:

zebra_fish.1
zebra_fish.2
zebra_fish.3
zebra_fish.4
zebra_fish.5
zebra_fish.6
zebra_fish.7
zebra_fish.8

Finally I try to do alignment with this command:

hisat2 -p 4 -x /home/ngs/zebra_fish/ zebra_fish.1 zebra_fish.2 zebra_fish.3 zebra_fish.4 zebra_fish.5 zebra_fish.6 zebra_fish.7 zebra_fish.8 -U SRR1048063_Zebrafish_pineal_gland_dark_replica_3_1.fastq -S SRR1048063_Zebrafish_pineal_gland_dark_replica_3_1_chrl.sam 

I get this error:

 hisat2-align exited with value 1

So, please can anyone help me?

Thanks

hisat2 • 651 views
ADD COMMENT
2
Entering edit mode
10 months ago
GenoMax 141k

You only need to use the basename of the index when you specify it. Try

hisat2 -p 4 -x /home/ngs/zebra_fish/zebra_fish -U SRR1048063_Zebrafish_pineal_gland_dark_replica_3_1.fastq -S SRR1048063_Zebrafish_pineal_gland_dark_replica_3_1_chrl.sam
ADD COMMENT
0
Entering edit mode

thanks man <3 you saved me!!

ADD REPLY

Login before adding your answer.

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