Skip to content
Snippets Groups Projects
Commit 69abcfb9 authored by Zhiyu Zhao's avatar Zhiyu Zhao
Browse files

Citation added.

parent 7c087791
Branches
Tags
No related merge requests found
/ODA_Flowchart.docx
/ODA/archived
/ODA/DB
File deleted
This diff is collapsed.
File deleted
This diff is collapsed.
File deleted
#!/bin/bash
if [[ $# < 2 ]]
then
echo "Usage:"
echo "sh this_file.sh input_path/input_file_name.xlsx output_path/output_file_name.xlsx optional_BioHPC_queue_name"
exit
fi
module load R/3.5.1-gccmkl
DIR=`dirname $0`
INPUT_FILE=$1
OUTPUT_FILE=$2
QUEUE=$3
if [ "$QUEUE" == "" ]
then
QUEUE=256GB
fi
srun -p $QUEUE Rscript $DIR/ODA_1.7.1.R $INPUT_FILE $OUTPUT_FILE
This diff is collapsed.
File deleted
#!/bin/bash
if [[ $# < 2 ]]
then
echo "Usage:"
echo "sh this_file.sh input_path/input_file_name.xlsx output_path/output_file_name.xlsx optional_BioHPC_queue_name"
exit
fi
module load R/3.5.1-gccmkl
DIR=`dirname $0`
INPUT_FILE=$1
OUTPUT_FILE=$2
QUEUE=$3
if [ "$QUEUE" == "" ]
then
QUEUE=256GB
fi
srun -p $QUEUE Rscript $DIR/ODA.R $INPUT_FILE $OUTPUT_FILE
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment