Why does annotate give an error?
2
0
Entering edit mode
3.4 years ago

Hello

I want to annotate a peakfile

But

Why does the following command for annotate give the following error?

Fj8nBp.md.jpg

While I added the executable path. According to the figure below

Fj8hjj.md.jpg

Output file

Fj86Zv.md.jpg

ChIP-Seq annotate • 1.0k views
ADD COMMENT
0
Entering edit mode
ADD COMMENT
0
Entering edit mode

Do you mean to add to the PATH for all files that are "not found"?

ADD REPLY
0
Entering edit mode

add to the PATH for all *directories containing an executable. It 'just' should be the /path/to/homer/bin

ADD REPLY
0
Entering edit mode

In Figure 2, I added homer / bin to the PATH.

export PATH=$PATH:/Desktop/homer/bin

source ~/.profile
ADD REPLY
0
Entering edit mode

Thank you for your help and guidance. My problem was solved.

ADD REPLY
0
Entering edit mode

cool, so mark the answer as accepted please. (Green mark on the left)

ADD REPLY
0
Entering edit mode
3.4 years ago

The problem was that when annotatePeaks.pl wanted to call other functions in other programs from within the program, it could not do so despite placing the bin folder path. And we have to make all the contents of the bin executable globally.

Follow these steps to solve the problem:

1: In the terminal, write the following code:

gedit .bashrc

2: In the opened text editor, write the following code at the bottom of the page:

export PATH = / home / Computer username (mrkl) / ..... / bin

Then save the changes

3: Enter the following code in your terminal:

gedit .profile

In the opened text editor, write the following code at the bottom according to the path of the bin folder and then save

export PATH = / home / Computer username (mrkl) / ..... / bin

ADD COMMENT
0
Entering edit mode
  1. Use nano/emacs/vim - not gedit. Learn to work on the command line, gedit is a graphical editor.
  2. You can add to PATH on just .bashrc, there is no need to edit your .profile (whatever that file is - I've heard of .bash_profile, but not .profile)
  3. Do NOT edit PATH to be just a single location, every other program will stop working. Instead, use PATH=$PATH:/new/location. In other words, add to $PATH, don't overwrite it.

#3 is extremely important. Don't ruin your shell by overwriting the PATH variable.

ADD REPLY

Login before adding your answer.

Traffic: 2571 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