Skip to content

Commit 56f1a47

Browse files
authored
Merge pull request #1414 from pabloaledo/dev
Backport support for Graviton 4 to version 3.16.1
2 parents a32cd19 + bba6b92 commit 56f1a47

File tree

3 files changed

+40
-1
lines changed

3 files changed

+40
-1
lines changed

conf/arm.config

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
process {
2+
3+
//// No aarch64 builds in bioconda / conda-forge channels
4+
5+
//// a) have seqera aarch64 conda builds
6+
7+
withName: '.*:ALIGN_STAR:STAR_ALIGN_IGENOMES' {
8+
conda = 'seqera::star=2.6.1d bioconda::samtools=1.21 conda-forge::gawk=5.1.0'
9+
//conda = 'seqera::star=2.6.1d bioconda::samtools=1.10 conda-forge::gawk=5.1.0'
10+
}
11+
12+
withName: 'STAR_GENOMEGENERATE_IGENOMES' {
13+
conda = 'seqera::star=2.6.1d bioconda::samtools=1.21 conda-forge::gawk=5.1.0'
14+
//conda = 'bioconda::star=2.6.1d bioconda::samtools=1.10 conda-forge::gawk=5.1.0'
15+
}
16+
17+
withName: 'RSEM_PREPAREREFERENCE' {
18+
conda = 'seqera::rsem=1.3.3 seqera::star=2.6.1d'
19+
//conda = 'bioconda::rsem=1.3.3 bioconda::star=2.7.10a'
20+
}
21+
22+
withName: 'RSEM_CALCULATEEXPRESSION' {
23+
conda = 'seqera::rsem=1.3.3 seqera::star=2.6.1d'
24+
//conda = 'bioconda::rsem=1.3.3 bioconda::star=2.7.10a'
25+
}
26+
27+
//// b) need aarch64 conda builds
28+
29+
//withName: 'HISAT2_ALIGN' {
30+
// conda = 'bioconda::hisat2 bioconda::samtools'
31+
// //conda = 'bioconda::hisat2=2.2.1 bioconda::samtools=1.16.1'
32+
//}
33+
34+
//withName: 'HISAT2_BUILD|HISAT2_EXTRACTSPLICESITES' {
35+
// conda = 'bioconda::hisat2'
36+
// //conda = 'bioconda::hisat2=2.2.1'
37+
//}
38+
39+
}

modules/nf-core/samtools/sort/main.nf

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nextflow.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ profiles {
186186
}
187187
arm {
188188
docker.runOptions = '-u $(id -u):$(id -g) --platform=linux/amd64'
189+
includeConfig 'conf/arm.config'
189190
}
190191
singularity {
191192
singularity.enabled = true

0 commit comments

Comments
 (0)