-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheggnog_mapper.sh
More file actions
25 lines (20 loc) · 871 Bytes
/
eggnog_mapper.sh
File metadata and controls
25 lines (20 loc) · 871 Bytes
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
#!/bin/bash
#SBATCH --job-name=emapper
#SBATCH --nodes=1
#SBATCH --mem=8000M
#SBATCH --time=24:00:00
#SBATCH --cpus-per-task=16
#SBATCH --partition=basic
#SBATCH --output=/scratch/course/2023w300106/barrera/emapper.log
#SBATCH --error=/scratch/course/2023w300106/barrera/emapper.err
#SBATCH --mail-type=END
#SBATCH --mail-user=cristian.barrera@univie.ac.at
#loading modules
module load conda
conda activate eggnog-mapper-2.1.12
#Command for eggnog
emapper.py -i /scratch/course/2023w300106/barrera/jaNemVec.transdecoder/proteinTransdecoder.fasta --cpu 16 \
--itype proteins --data-dir /scratch/mirror/eggnog-mapper/2.1.12/ \
-m diamond --pident 60 --query_cover 60 --subject_cover 70 --tax_scope 'eukaryota broad' \
--output jaNemVec1_emapper --output_dir /scratch/course/2023w300106/barrera/ex10 \
--temp_dir ${TMPDIR} --decorate_gff jaNemVec1_emapper.dec.gff