-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename GREBI_HOME to GREBI_DATALOAD_HOME
- Loading branch information
Showing
16 changed files
with
32 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
#!/bin/bash | ||
export GREBI_HOME=/nfs/production/parkinso/spot/grebi | ||
export GREBI_DATALOAD_HOME=/nfs/production/parkinso/spot/grebi/dataload | ||
export GREBI_TMP=/hps/nobackup/parkinso/spot/grebi/tmp | ||
export GREBI_CONFIG=ebi | ||
export GREBI_IS_EBI=true | ||
export GREBI_TIMESTAMP=$(date +%Y_%m_%d__%H_%M) | ||
export GREBI_MAX_ENTITIES=1000000000 | ||
export GREBI_NEXTFLOW_CONFIG=$GREBI_HOME/nextflow/codon_nextflow.config | ||
export GREBI_NEXTFLOW_CONFIG=$GREBI_DATALOAD_HOME/nextflow/codon_nextflow.config | ||
module load nextflow-22.10.1-gcc-11.2.0-ju5saqw | ||
module load python | ||
export PYTHONPATH="/homes/spotbot/.local/lib/python3.6/site-packages:$PYTHONPATH" | ||
cd /hps/nobackup/parkinso/spot/grebi/ | ||
export PYTHONUNBUFFERED=true | ||
srun -p datamover --time 1:0:0 --mem 8g bash -c "rm -rf /nfs/public/rw/ontoapps/grebi/staging && mkdir /nfs/public/rw/ontoapps/grebi/staging" | ||
srun --time 3-0:0:0 --mem 8g bash -c "rm -rf work* tmp && python3 ${GREBI_HOME}/scripts/dataload.py" | ||
#srun --time 23:0:0 --mem 8g bash -c "python3 ${GREBI_HOME}/scripts/dataload_codon.py" | ||
srun --time 3-0:0:0 --mem 8g bash -c "rm -rf work* tmp && python3 ${GREBI_DATALOAD_HOME}/scripts/dataload.py" | ||
#srun --time 23:0:0 --mem 8g bash -c "python3 ${GREBI_DATALOAD_HOME}/scripts/dataload_codon.py" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
#!/bin/bash | ||
export GREBI_HOME=~/grebi | ||
export GREBI_DATALOAD_HOME=~/grebi/dataload | ||
export GREBI_TMP=$(pwd) | ||
export GREBI_CONFIG=ebi | ||
export GREBI_IS_EBI=false | ||
export GREBI_TIMESTAMP=$(date +%Y_%m_%d__%H_%M) | ||
export RUST_BACKTRACE=full | ||
export GREBI_NEXTFLOW_CONFIG=$GREBI_HOME/nextflow/local_nextflow.config | ||
export GREBI_NEXTFLOW_CONFIG=$GREBI_DATALOAD_HOME/nextflow/local_nextflow.config | ||
cd $GREBI_TMP | ||
export PYTHONUNBUFFERED=true | ||
rm -rf work tmp | ||
python3 ${GREBI_HOME}/scripts/dataload.py | ||
python3 ${GREBI_DATALOAD_HOME}/scripts/dataload.py | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
#!/bin/bash | ||
export GREBI_HOME=/home/james/grebi | ||
export GREBI_DATALOAD_HOME=/home/james/grebi/dataload | ||
export GREBI_TMP=/data/grebi_tmp | ||
export GREBI_CONFIG=ebi | ||
export GREBI_IS_EBI=false | ||
export GREBI_TIMESTAMP=$(date +%Y_%m_%d__%H_%M) | ||
export RUST_BACKTRACE=full | ||
export GREBI_NEXTFLOW_CONFIG=$GREBI_HOME/nextflow/saturos_nextflow.config | ||
export GREBI_NEXTFLOW_CONFIG=$GREBI_DATALOAD_HOME/nextflow/saturos_nextflow.config | ||
cd $GREBI_TMP | ||
export PYTHONUNBUFFERED=true | ||
rm -rf work tmp | ||
python3 ${GREBI_HOME}/scripts/dataload.py | ||
python3 ${GREBI_DATALOAD_HOME}/scripts/dataload.py | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters