In coordination with the ACCESS team, XSEDE has paused the processing of Startup, Education, and other allocation requests from August 17-31. This pause will ensure that no requests are lost while we are making infrastructure updates behind the scenes and handing things over to ACCESS. If you have questions, contact help@xsede.org. The ACCESS team will resume taking allocation requests on September 1 via https://access-ci.org/.

The discussion forums in the XSEDE User Portal are for users to share experiences, questions, and comments with other users and XSEDE staff. Visitors are welcome to browse and search, but you must login to contribute to the forums. While XSEDE staff monitor the lists, XSEDE does not guarantee that questions will be answered. Please note that the forums are not a replacement for formal support or bug reporting procedures through the XSEDE Help Desk. You must be logged in to post to the user forums.

« Back to General Discussion

Problem loading modules on blacklight

Combination View Flat View Tree View
Threads [ Previous | Next ]
Problem loading modules on blacklight
Answer
9/25/12 10:29 PM
I recently submitted a Trinity job on Blacklight, but it failed:

PBS Job Id: 200001.tg-login1.blacklight.psc.teragrid.org
Job Name: Nawrocki3_qsub.txt
Exec host: bl1.psc.teragrid.org
Aborted by PBS Server
Job cannot be executed
See Administrator for help

I checked the log file and it says the following:

module load trinity
module: Command not found
module load java
Module: Command not found
ulimit -u unlimited
ulimit: Command not found
Trinity.pl <my trinity command was here but that's not the problem.>
Trinity.pl: Command not found

I am not sure how to get it to properly load the modules. It works fine outside of my qsub script when I do it in the command line.

This is the qsub file I am using to execute the program:


#!/bin/csh
# combine stderr and stout into one stream
#PBS -N Trinity
#PBS -l ncpus=32
#PBS -l walltime=48:00:00
#PBS -j oe
#PBS -q batch
set echo
# output
#PBS cd $SCRATCH
#PBS -o trinity.log


$SCRATCH/Ectopleura_files

load module java
load module trinity/r2011-08-20cd
load module trinity
ulimit -s unlimited
Trinity.pl --seqType fq --kmer_method meryl --cpu 64 --left old_cat_Forward_all.fastq --right old_cat_Reverse_all.fastq --output $SCRATCH --min_contig_length 200 --paired_fragment_length 175 --CPU 32--bflyCPU 32 --bflyGCThreads 32 --bflyHeapspaceInit 8G



Thanks for any help

AM Nawrocki