Closed SandraBabirye closed 3 weeks ago
Hi @BethYates and @tkchafin , Kindly review my commits towards solving issue 141. Thank you
nf-core lint
overall result: Passed :white_check_mark: :warning:Posted for pipeline commit 067833c
+| ✅ 131 tests passed |+
#| ❔ 21 tests were ignored |#
!| ❗ 1 tests had warnings |!
We need to pass an argument -y
to the GFFREAD process to tell it to output protein fasta sequences, to do this you need to add the following to the process block in modules.config
withName: GFFREAD { ext.args = "-y" }
We will need to add a block to base.config to set memory, cpus and time for BUSCOPROTEINS. The meta for the input channel to BUSCOPROTEINS doesn't have a value for genome_size so we can't use the same black as we do for BUSCO run in genome mode. Something like this should work , but feel free to adjust the values as you see fit
withName: BUSCOPROTEINS { memory = { check_max( 4.GB * task.attempt, 'memory' ) } cpus = { log_increase_cpus(2, 2*task.attempt, 1, 2) } time = { check_max( 2.h * task.attempt, 'time') } }
PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).