Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Blockkurs MicrobialBioinfo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
This server has been upgraded to GitLab release
17.10
.
Show more breadcrumbs
AMR
Blockkurs MicrobialBioinfo
Merge requests
!58
Update file panaroo.sh
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update file panaroo.sh
master-patch-41eb
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Vanni Benvenga
requested to merge
master-patch-41eb
into
master
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
d712596e
Show latest version
1 file
+
12
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
d712596e
Update file panaroo.sh
· d712596e
Vanni Benvenga
authored
2 years ago
exercises/Pangenome_analysis/panaroo.sh
+
12
−
8
Options
#!/usr/bin/env bash
#SBATCH --time=02:00:00
#SBATCH --mem-per-cpu=
20
G
#SBATCH --cpus-per-task=
2
#SBATCH --mem-per-cpu=
64
G
#SBATCH --cpus-per-task=
4
#SBATCH --job-name=panaroo
#SBATCH --output=panaroo_%j.out
#SBATCH --error=panaroo_%j.err
#SBATCH --output=
slurm_
panaroo_%j.out
#SBATCH --error=
slurm_
panaroo_%j.err
# Load singularity module
module load singularityce
@@ -12,7 +14,7 @@ module load singularityce
# Declare variables
# input data folder
datadir
=
# results folder
# results folder
(03_output_mrsa)
wd
=
# Path to singularity images folder
singpath
=
/shares/amr.imm.uzh/bioinfo/singularity/
@@ -25,15 +27,17 @@ cd $wd
mkdir
-p
panaroo/annotation_files
mkdir
-p
panaroo/panaroo_output
# generate soft links to the .gff files while looping through the sample names
for
sample_id
in
"
${
array
[@]
}
"
do
echo
$sample_id
ln
-s
$wd
/
$sample_id
/prokka_annotation/
$sample_id
.gff
$wd
/panaroo/annotation_files/
done
# Runs singularity on the annotations and send the output to the output folder
echo
Starting panaroo
$(
date
+
"%T"
)
cd
panaroo
$singpath
/panaroo_1.3.0--pyhdfd78af_0.sif panaroo
-i
$wd
/panaroo/annotation_files/
*
.gff
-o
./panaroo_output/
--clean-mode
strict
--remove-invalid-genes
--core_threshold
cd
$wd
/panaroo
$singpath
/panaroo_1.3.0--pyhdfd78af_0.sif
\
panaroo
-i
./annotation_files/
*
.gff
-o
./panaroo_output/
\
--clean-mode
strict
--remove-invalid-genes
--core_threshold
0.95
-t
$SLURM_CPUS_PER_TASK
echo
Done
$(
date
+
"%T"
)
\ No newline at end of file
Loading