Trinity RnaSeq Protocol
I'm trying to run Trinityrnaseq-protocol , the latest version , but it doesn't work . It display to me this error : "You must set the environmental variable TRINITY_BASE_DIR to the base installation directory of Trinity before running this" How can I fix this issues ? Thnx in advance.
• 2,550 views
•
link
1 answer
Assuming you are using some kind of linux you need to use export
export TRINITY_BASE_DIR=/location/of/installation/directory
is it is searching for it in the cood here
if os.environ.has_key('TRINITY_BASE_DIR'):
TRINITY_BASE_DIR = os.environ['TRINITY_BASE_DIR'];
else:
sys.stderr.write("You must set the environmental variable TRINITY_BASE_DIR to the base installation directory of Trinity before running this");
sys.exit()
after exporting it you can see all the exported variable using this command
export -p
• 1 views
•
link
Log in to answer this question.
How can I do that if I'm runing the tool on Galaxy ?
Hi mazdarsophia, you commented on your own post, not on the post of Medhat. It would have been good too to mention from the beginning that you are using Galaxy.
Could you help me in order to find a solution and let the tool work in galaxy ? thnx in advance