Hi, I am facing trouble in running cutadapt command: I installed cutadapt and activated through conda, but when I am running my command: cutadapt -a ACTCCTACGGGAGGCAGCAG -o output.fastq input.fastq but it is showing error that "cutadapt" is not recognized command. I have tried to update variable path also but still its not working. Could you please help me out? I added cutadapt as new channel in anaconda, as it was not available earlier. Thank you
Find out where it was installed and reference it explicitly. eg:
/home/bin/cutadapt1.2.3/cutadapt -a ACTCCTACGGGAGGCAGCAG -o output.fastq input.fastq
It means that your command is not in
PATH
. Please google whatPATH
is and how to set it up, that is basic Linux/Unix.Yes that is true. But a workaround is just to specify the path. There's something else going on because KD uses conda and it handles PATH variables etc for you.
What does
activated through conda
mean? Did you make a new enviromnent for it? Are you sure you indeed pulled it to that environment rather that the base? Please show full installation commands.It was not in channels and asked to add in channel. then I added accordingly
and cutadapt was activated but commands are not working
FYI I am not the creator of this thread asking for help...
I know. Commenting on an existing chain keeps threads organized, it does not imply that I am specifically commenting on your comment.
I have done this step, but yes I think I am making mistake at this point, but unable to figure it out