--
You received this message because you are subscribed to the Google Groups "trinityrnaseq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to trinityrnaseq-u...@googlegroups.com.
To post to this group, send email to trinityrn...@googlegroups.com.
Visit this group at http://groups.google.com/group/trinityrnaseq-users.
For more options, visit https://groups.google.com/d/optout.
qsub -P diag -l mem_free=1G -q all.q /diag/software/trinity/util/TrinityStats.pl /diag/home/shore Trinityjoel.fasta
#!/usr/bin/env perl
use strict;
use warnings;
use FindBin;
use lib ("$FindBin::Bin/../PerlLib");
use Fasta_reader;
?
If it does, then it should be updating it's own Perl library path so it finds the Fasta_reader.pm module.
If you need to, you can directly set the PERL5LIB environmental variable so it will locate the module in the trinity distro:
export PERL5LIB=/diag/software/trinity/:${PERL5LIB}
but honestly, you shouldn't have to, and in reality if this script is having a hard time finding the PerlLib directory, then really none of the Trinity scripts (including Trinity itself) should be functioning - since they all do this sort of thing.
best,
~brian
--
You received this message because you are subscribed to the Google Groups "trinityrnaseq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to trinityrnaseq-u...@googlegroups.com.
To post to this group, send email to trinityrn...@googlegroups.com.
Visit this group at http://groups.google.com/group/trinityrnaseq-users.
For more options, visit https://groups.google.com/d/optout.
--
--
--