The problem isn't with the Newbler software, it is how you're calling the runAssembly script.
When you use a command like foo, unless it is a command defined in your bashrc/profile, the shell will search all of the places listed in your $PATH looking for foo. In other words, the shell needs to know where to find the command/program you're calling.
With normally installed programs or built in things like ls, the path is typically already updated. So you don't need to provide the location of the command. You can confirm this by running which ls, you'll see that the location of ls is known.
So, either add the path where the shell scripts the newbler assembler uses are to your environment, or you can call them by providing the directory in your path variable or make an alias. E.g. if I installed them in /usr/bin I would have to call runAssembly with /usr/bin/runAssembly.
ADD COMMENT
• link
updated 23 months ago by
Ram
44k
•
written 9.5 years ago by
pld
5.1k
0
Entering edit mode
OK thank you
ADD REPLY
• link
updated 23 months ago by
Ram
44k
•
written 9.5 years ago by
midox
▴
290
OK thank you