Bonjour,
Je cherche à faire tourner un workflow nf-core sur un gros jeu de données (le génome de l’axolotl, 28Gb au compteur…) et je me retrouve avec des erreurs out-of-memory.
J’ai essayé de spécifier un fichier de configuration pour augmenter la mémoire du process en question, mais le workflow ne prends pas le fichier de configuration en question.
Le fichier de configuration en question :
process {
withName: 'NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:STAR_GENOMEGENERATE' {
memory = 250.GB
}
withName: 'NFCORE_RNASEQ:RNASEQ:PREPARE_GENOME:SALMON_INDEX' {
memory = 250.GB
cpus = 30
}
withName: 'NFCORE_RNASEQ:RNASEQ:ALIGN_STAR:STAR_ALIGN' {
memory = 250.GB
}
withName: 'NFCORE_RNASEQ:RNASEQ:FASTQ_SUBSAMPLE_FQ_SALMON:SALMON_QUANT' {
memory = 250.GB
}
}
La ligne de code correspondante dans mon fichier sbatch :
srun nextflow run nf-core/rnaseq -profile ipop_up -r 3.18.0 -c /shared/home/clement/configFiles/nf-core/axolotl.config \
Quelques lignes du fichier log montrant que le fichier de configuration n’a pas été pris en compte :
Core Nextflow options
revision : 3.18.0
runName : angry_legentil
containerEngine : singularity
launchDir : /shared/projects/evol_stem_regen/Projets/2022_EvolutionRegeneration/04_results/RNAseq/ambystoma_mexicanum/Natarajan_2018_Circulation
workDir : /shared/projects/evol_stem_regen/Projets/2022_EvolutionRegeneration/04_results/RNAseq/ambystoma_mexicanum/Natarajan_2018_Circulation/work
projectDir : /shared/home/clement/.nextflow/assets/nf-core/rnaseq
userName : clement
profile : ipop_up
configFiles :
Si quelqu’un peut éclairer ma lanterne, ce serait super, merci !
Bonne journée
Yves