lh3 / seqtk

Toolkit for processing sequences in FASTA/Q formats
MIT License
1.35k stars 310 forks source link

Error: Unable to locate package seqtk #176

Open HanaBanan opened 3 years ago

HanaBanan commented 3 years ago

Hi,

I installed seqtk using the instructions given:

git clone https://github.com/lh3/seqtk.git; cd seqtk;

I get an error: "Unable to locate package seqtk".

So I tried installing it back but I still got the same error. I ignored and tried to convert my fastq file into fasta but still get the same error. I tried remove seqtk but wasn't successful since it said it couldn't locate seqtk. Can anyone tell me where did I do wrong and how to fix this?

I would appreciate any help. Thank you. Screenshot (73)

yzhernand commented 2 years ago

seqtk is not available as a package in the main Ubuntu repositories (I assume you are using Ubuntu).

Also, you forgot to follow the last part of the instructions on the main README for seqtk:

cd seqtk; make

You did cd to the directory with the source, but forgot to run make. After seqtk gets compiled, you can either leave it in that directory and use the full path to run it each time, or copy it to somewhere in your $PATH (eg, /usr/local/bin, ~/.local/bin, etc).