Thanks Albert. I still get an error that says "Python: Can't open file 'htseq-count' : [Errno 2] No such file or direcotory " ..
I was trying to use
htseq-count --mode /home/user/test.sam home/homo_sapiens.GRCh37.70.gtf
I get
htseq-count: Command not found
error.
I have installed the HTSeq package and I am running this command from command line and not in python shell. Can somebody help me with this issue.
Thanks in advance.
1 answer
htseq-count is probably a script that was installed into a location that is has not been added to your path.
find that script and run it directly or via python:
python htseq-count
you need to actually find the script and run it from where it is located not just invoke it any place - you also need to learn what it means to run scripts in a command line environment
it will look like:
python /some/place/on/my/computer/htseq-count
and we don't know where it was installed, it should have informed you of it while you installed it
Log in to answer this question.