Skip to content

Commit 7d91749

Browse files
authored
Merge pull request #58 from calculquebec/bioc600
Fichier de configuration pour la grappe bioc600
2 parents a237784 + 690b3dd commit 7d91749

File tree

3 files changed

+44
-0
lines changed

3 files changed

+44
-0
lines changed

bioc600/common.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../common/common.tf

bioc600/config.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
jupyterhub::jupyterhub_config_hash:
2+
SbatchForm:
3+
memory:
4+
min: 1024
5+
max: 50000
6+
def: 2048
7+
8+
profile::software_stack::lmod_default_modules:
9+
- 'python/3.11'
10+
- 'bwa/0.7.18'
11+
- 'bedtools/2.31.0'
12+
- 'bedops/2.4.41'
13+
- 'samtools/1.22.1'
14+
- 'sambamba/1.0.1'
15+
- 'gcc/12.3'
16+
- 'r/4.5.0'
17+
- 'r-bundle-bioconductor/3.21'
18+
- 'trimmomatic/0.39'
19+
- 'perl/5.36.1'
20+
- 'star/2.7.11b'
21+
- 'subread/2.0.6'
22+
- 'fastqc/0.12.1'
23+
24+
jupyterhub::kernel::venv::packages:
25+
- 'cutadapt'
26+
- 'deeptools'

bioc600/main.tf

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
locals {
2+
custom = {
3+
nnodes = {
4+
cpupool = 7
5+
}
6+
home_size = 100
7+
project_size = 200
8+
scratch_size = 1625
9+
10+
user_quotas = {
11+
home = "7g"
12+
project = "15g"
13+
scratch = "125g"
14+
}
15+
}
16+
name = "bioc600"
17+
}

0 commit comments

Comments
 (0)