-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
single omics methods receive arguments
- Loading branch information
Showing
20 changed files
with
483 additions
and
126 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/bash | ||
|
||
#SBATCH --output=logs/%j.out | ||
#SBATCH --error=logs/%j.err | ||
#SBATCH --mail-type=END | ||
#SBATCH [email protected] | ||
|
||
${1} | ||
# if [ "${1}" = "pearson_corr" ]; then | ||
# echo "Method: ${1}" | ||
# python src/control_methods/pearson/script.py ${args} | ||
# elif [ "${1}" = "celloracle" ]; then | ||
# /home/jnourisa/miniconda3/envs/celloracle/bin/python src/methods/multi_omics/celloracle/script.py ${args} | ||
# elif [ "$1" == "scenic" ] || [ "$1" == "genie3" ] || [ "$1" == "grnboost2" ]; then | ||
# singularity exec ../../images/scenic python src/methods/single_omics/${1}/script.py ${args} | ||
# elif [ "$1" == "scglue" ]; then | ||
# singularity exec ../../images/${1} python src/methods/multi_omics/${1}/script.py ${args} | ||
# elif [ "$1" == "ppcor" ]; then #R | ||
# singularity exec ../../images/${1} Rscript src/methods/single_omics/${1}/script.R ${args} | ||
# else | ||
# singularity exec ../../images/${1} python src/methods/single_omics/${1}/script.py ${args} | ||
# fi | ||
|
||
|
||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.