Bash: salmon command not found
1
1
Entering edit mode
5.5 years ago
ab123 ▴ 50

Hello there,

Has anyone gotten Salmon to work in Terminal?

It keeps telling me that the command does not exist.

I've already upgraded Anaconda and ran the command as just "activate salmon" instead of "conda activate salmon". The file has also been removed from the bash_profile as recommended in the salmon notes.

Any tips?

Cheers!

Output when running conda activate salmon below (as mentioned I ran the suggestions):

conda activate salmon

CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
If your shell is Bash or a Bourne variant, enable conda for the current user with

    $ echo ". /anaconda3/etc/profile.d/conda.sh" >> ~/.bash_profile

or, for all users, enable conda with

    $ sudo ln -s /anaconda3/etc/profile.d/conda.sh /etc/profile.d/conda.sh

The options above will permanently enable the 'conda' command, but they do NOT
put conda's base (root) environment on PATH.  To do so, run

    $ conda activate

in your terminal, or to put the base environment on PATH permanently, run

    $ echo "conda activate" >> ~/.bash_profile

Previous to conda 4.4, the recommended way to activate conda was to modify PATH in
your ~/.bash_profile file.  You should manually remove the line that looks like

    export PATH="/anaconda3/bin:$PATH"

^^^ The above line should NO LONGER be in your ~/.bash_profile file! ^^^
salmon bash RNA-Seq • 3.2k views
ADD COMMENT
2
Entering edit mode
5.5 years ago
ATpoint 82k

None of these errors have anything to do with salmon. What you apparently did was to create a new environment termed Salmon. Did you install Salmon itself: conda install -c bioconda salmon?

ADD COMMENT
0
Entering edit mode

Hi there, thanks for the answer. I followed the Salmon user script which doesn't mention the install command. I ran install and that seems to have solved the problem! Thank you!

ADD REPLY
0
Entering edit mode

Can you link that script?

ADD REPLY
0
Entering edit mode

If an answer was helpful you should upvote it, if the answer resolved your question you should mark it as accepted.
Upvote|Bookmark|Accept

ADD REPLY
0
Entering edit mode

Any such package can be installed with the general command

conda install -c bioconda package

but for some packages from repositories for Bioconductor package you have to link it to the uploader such as

conda install -c bioconda bioconductor-shortread

One easy way is to google 'conda salmon' and then follow the link on Anaconda website which has instructions to install it on Linux using the above commands.

Cheers...

ADD REPLY

Login before adding your answer.

Traffic: 2801 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6