-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path03_predict.sh
executable file
·67 lines (57 loc) · 2.3 KB
/
03_predict.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/bash -l
#SBATCH -p batch --time 3-0:00:00 --ntasks 16 --nodes 1 --mem 24G --out logs/predict.%a.log
module load funannotate
# this will define $SCRATCH variable if you don't have this on your system you can basically do this depending on
# where you have temp storage space and fast disks
# SCRATCH=/tmp/${USER}_$$
# mkdir -p $SCRATCH
module load workspace/scratch
CPU=1
if [ $SLURM_CPUS_ON_NODE ]; then
CPU=$SLURM_CPUS_ON_NODE
fi
BUSCO=fungi_odb10 # This could be changed to the core BUSCO set you want to use
INDIR=genomes
OUTDIR=annotate
PREDS=$(realpath prediction_support)
mkdir -p $OUTDIR
SAMPFILE=samples.csv
N=${SLURM_ARRAY_TASK_ID}
if [ ! $N ]; then
N=$1
if [ ! $N ]; then
echo "need to provide a number by --array or cmdline"
exit
fi
fi
MAX=`wc -l $SAMPFILE | awk '{print $1}'`
if [ $N -gt $MAX ]; then
echo "$N is too big, only $MAX lines in $SAMPFILE"
exit
fi
export AUGUSTUS_CONFIG_PATH=$(realpath lib/augustus/3.3/config)
export FUNANNOTATE_DB=/bigdata/stajichlab/shared/lib/funannotate_db
SEED_SPECIES=anidulans
IFS=,
tail -n +2 $SAMPFILE | sed -n ${N}p | while read SPECIES STRAIN PHYLUM BIOSAMPLE BIOPROJECT LOCUSTAG
do
SEQCENTER=JGI
BASE=$(echo -n "$SPECIES $STRAIN" | perl -p -e 's/\s+/_/g')
echo "sample is $BASE"
MASKED=$(realpath $INDIR/$BASE.masked.fasta)
if [ ! -f $MASKED ]; then
echo "Cannot find $BASE.masked.fasta in $INDIR - may not have been run yet"
exit
fi
if [[ -f $PREDS/$BASE.genemark.gtf ]]; then
funannotate predict --cpus $CPU --keep_no_stops --SeqCenter $SEQCENTER --busco_db $BUSCO --optimize_augustus \
--strain $STRAIN --min_training_models 100 --AUGUSTUS_CONFIG_PATH $AUGUSTUS_CONFIG_PATH \
-i $INDIR/$BASE.masked.fasta --name $LOCUSTAG --protein_evidence lib/informant.aa \
-s "$SPECIES" -o $OUTDIR/$BASE --busco_seed_species $SEED_SPECIES --genemark_gtf $PREDS/$BASE.genemark.gtf
else
funannotate predict --cpus $CPU --keep_no_stops --SeqCenter $SEQCENTER --busco_db $BUSCO --optimize_augustus \
--strain $STRAIN --min_training_models 100 --AUGUSTUS_CONFIG_PATH $AUGUSTUS_CONFIG_PATH \
-i $INDIR/$BASE.masked.fasta --name $LOCUSTAG --protein_evidence lib/informant.aa \
-s "$SPECIES" -o $OUTDIR/$BASE --busco_seed_species $SEED_SPECIES --tmpdir $SCRATCH
fi
done