Yes, that was what I did.
I downloaded the file to >> documents/ tutorial Then I used the chmod +x to make it executable
output
Nourhans-MacBook-Pro:tutorial nourhanelsahly$ ls -l
total 2848
-rwxr-xr-x@ 1 nourhanelsahly staff 1458039 Dec 14 11:36 usearch10.0-2.240_i86osx32
I am stuck in determining the path
when I use “echo $PATH” I get the following
Nourhans-MacBook-Pro:tutorial nourhanelsahly$ echo $PATH
/anaconda3/bin:/Library/Frameworks/Python.framework/Versions/3.6/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
then I used the following command
/usr/bin/usearch10.0-2.240_i86osx32 -id 0.9 -cluster_fast reads.fasta -uc results.uc
output
Nourhans-MacBook-Pro:tutorial nourhanelsahly$ /usr/bin/usearch10.0-2.240_i86osx32 -id 0.9 -cluster_fast reads.fasta -uc results.uc
-bash: /usr/bin/usearch10.0-2.240_i86osx32: No such file or directory
What leads you to believe that? Without access to your Mac we can't really help you unless you can tell us why and in what way it does not work.
@genomax is quite correct here. Edit your post with the exact errors you get while installing/running it.
The location
/documents/tutorialisn’t in your PATH, so the file isn’t found.You need to either execute the code directly
./usearch10.0-2.240_i86osx32(While you are inside the tutorial folder) or ensure that the folder is added to the PATH:Or move the usearch file in to one of the locations already in the path, though that’s not always a good idea.