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

Citatoin added.

parent 5f6e79d6
Branches
Tags
No related merge requests found
File added
This diff is collapsed.
This diff is collapsed.
File added
#!/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 added
#!/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