-
Notifications
You must be signed in to change notification settings - Fork 1
/
log.group_clones.sh
27 lines (22 loc) · 1.14 KB
/
log.group_clones.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/tcsh
#SBATCH --job-name=group_clones # job name
#SBATCH --partition=128GB,256GB,256GBv1 # select partion from 128GB, 256GB, 384GB, GPU and super
#SBATCH --nodes=1 # number of nodes requested by user
#SBATCH --time=30-00:00:00 # run time, format: D-H:M:S (max wallclock time)
#SBATCH --output=serialJob.%j.out # standard output file name
#SBATCH --error=serialJob.%j.time # standard error output file name
#SBATCH --mail-user=user@email # specify an email address
#SBATCH --mail-type=end # send email when job status change (start, end, abortion and etc.)
echo 'Hello World'
#set python environment
setenv PATH ~/.conda/envs/py36/bin:$PATH
echo 'Program is running with the current python version:'
which python
python --version
set sgRNA_df=GSE185995_sgRNA_df_adj_regex.pkl.gz
set CUTOFF=0.05
./Group_clonal_cells.py\
-s $sgRNA_df\
-c $CUTOFF\
-o ./YWsg1P1-clone_tree.$CUTOFF.txt \
-op ./YWsg1P1-clone_pval.$CUTOFF.txt