I have the virus genome(fasta) and gff file and I am trying to prepare-reference through the following commands:
rsem-prepare-reference --gff3 KT992094.1.gff3 KT992094.1.fasta
or
rsem-prepare-reference --gff3 KT992094.1.gff \ --gff3-genes-as-transcripts \ --bowtie \ KT992094.1.fasta \ ref/virus
But it's saying:
Invalid number of arguments!
How can I solve this issue?
Try removing the backslashes and extra spaces in your second command. Backslashes escape characters, so if it's all one one line you'll be escaping important characters in your arguments and flags.
Also make sure that you're using the correct command line arguments and flags, since your two commands vary greatly in what they theoretically are doing.
basesname
will be the name for resulting index etc. So provide that.which index?
The index you're trying to generate. Ensure you're either in the directory you wish the output of
rsem-prepare-reference
to be in, or you give that output directory along with a sensible prefix as the basename.while running this:
I got this error:
Error is clearly noted. Check your gff file :
It contains 24 lines only and does not have 25 line
Are you sure? Paste the output to
cat -te KT992094.1.gff3 && echo $?
here - don't take a screenshot, copy and paste the content and code-format it.I tried :
And get the following results:
This file does not contain 25th line?