Skip to content
Snippets Groups Projects
Commit 4218150d authored by Timothy ODonnell's avatar Timothy ODonnell Committed by Tim O'Donnell
Browse files

fix

parent c20530ab
No related merge requests found
......@@ -64,12 +64,12 @@ python write_proteome_peptides.py \
python run_thirdparty_predictors.py \
proteome_peptides.chr1.csv \
--predictor netmhcpan4 \
--chunk-size 100000 \
--chunk-size 10000 \
--allele $(cat alleles.txt) \
--out "predictions/chr1.netmhcpan4" \
--worker-log-dir "$SCRATCH_DIR/$DOWNLOAD_NAME" \
--cluster-parallelism \
--cluster-max-retries 15 \
--cluster-max-retries 3 \
--cluster-submit-command bsub \
--cluster-results-workdir ~/mhcflurry-scratch \
--cluster-script-prefix-path $SCRIPT_DIR/cluster_submit_script_header.mssm_hpc.nogpu.lsf
......@@ -106,7 +106,7 @@ python run_thirdparty_predictors.py \
--out "predictions/all.netmhcpan4" \
--worker-log-dir "$SCRATCH_DIR/$DOWNLOAD_NAME" \
--cluster-parallelism \
--cluster-max-retries 15 \
--cluster-max-retries 3 \
--cluster-submit-command bsub \
--cluster-results-workdir ~/mhcflurry-scratch \
--cluster-script-prefix-path cluster_submit_script_header.mssm_hpc.nogpu.lsf
......
......@@ -4,8 +4,8 @@
#BSUB -q express # queue
#BSUB -R span[hosts=1] # one node
#BSUB -n 1 # number of compute cores
#BSUB -W 46:00 # walltime in HH:MM
#BSUB -R rusage[mem=30000] # mb memory requested
#BSUB -W 12:00 # walltime in HH:MM
#BSUB -R rusage[mem=20000] # mb memory requested
#BSUB -o {work_dir}/%J.stdout # output log (%J : JobID)
#BSUB -eo {work_dir}/STDERR # error log
#BSUB -L /bin/bash # Initialize the execution environment
......@@ -25,8 +25,19 @@ export NETMHC_BUNDLE_HOME=$HOME/sinai/git/netmhc-bundle
export NETMHC_BUNDLE_TMPDIR=/local/JOBS/netmhctmp-{work_item_num}
export PATH=$NETMHC_BUNDLE_HOME/bin:$PATH
cd {work_dir}
mkdir -p "$NETMHC_BUNDLE_TMPDIR"
mkdir -p "$TMPDIR"
chmod 777 "$NETMHC_BUNDLE_TMPDIR"
chmod 777 "$TMPDIR"
ls "$NETMHC_BUNDLE_TMPDIR"
ls "$TMPDIR"
netMHCpan-4.0 -listMHC
free -m
env
cd {work_dir}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment