Skip to content

Commit

Permalink
Merged in zenodo (pull request #188)
Browse files Browse the repository at this point in the history
zenodo json added
  • Loading branch information
MikeWLloyd committed Apr 25, 2024
2 parents dfa0451 + cc43d5f commit 331bf8d
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 6 deletions.
46 changes: 46 additions & 0 deletions .zenodo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"upload_type": "software",
"description": "This is a GitHub action for releasing to Zenodo without giving webhook admin access",
"title": "Zenodo Release Action",
"creators": [
{
"affiliation": "The Jackson Laboratory",
"orcid": "0000-0003-1021-8129",
"name": "Michael Lloyd"
},
{
"affiliation": "The Jackson Laboratory",
"name": "Brian Sanderson"
},
{
"affiliation": "The Jackson Laboratory",
"name": "Barry Guglielmo"
},
{
"affiliation": "The Jackson Laboratory",
"name": "Sai Lek"
},
{
"affiliation": "The Jackson Laboratory",
"name": "Peter Fields"
},
{
"affiliation": "The Jackson Laboratory",
"name": "Harshpreet Chandok"
},
{
"affiliation": "The Jackson Laboratory",
"name": "Carolyn Paisie"
},
{
"affiliation": "The Jackson Laboratory",
"name": "Gabriel Rech"
},
{
"affiliation": "The Jackson Laboratory",
"name": "Anuj Srivastava"
}
],
"keywords": ["zenodo", "release", "archive"],
"license": "MIT"
}
5 changes: 2 additions & 3 deletions modules/r/annotate_genes_sv.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ process ANNOTATE_GENES_SV {
tag "$sampleID"

cpus 1
memory 8.GB
time '04:00:00'
memory 10.GB
time '10:00:00'
errorStrategy {(task.exitStatus == 140) ? {log.info "\n\nError code: ${task.exitStatus} for task: ${task.name}. Likely caused by the task wall clock: ${task.time} or memory: ${task.memory} being exceeded.\nAttempting orderly shutdown.\nSee .command.log in: ${task.workDir} for more info.\n\n"; return 'finish'}.call() : 'finish'}

container 'quay.io/jaxcompsci/r-sv_cnv_annotate:4.1.1'
Expand All @@ -17,7 +17,6 @@ process ANNOTATE_GENES_SV {

script:


if (suppl_switch == "main")
"""
Rscript ${projectDir}/bin/pta/annotate-bedpe-with-genes.r \
Expand Down
5 changes: 3 additions & 2 deletions modules/r/annotate_genes_sv_mouse.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ process ANNOTATE_GENES_SV {
tag "$sampleID"

cpus 1
memory 8.GB
time '04:00:00'
memory 10.GB
time '10:00:00'
errorStrategy {(task.exitStatus == 140) ? {log.info "\n\nError code: ${task.exitStatus} for task: ${task.name}. Likely caused by the task wall clock: ${task.time} or memory: ${task.memory} being exceeded.\nAttempting orderly shutdown.\nSee .command.log in: ${task.workDir} for more info.\n\n"; return 'finish'}.call() : 'finish'}

container 'quay.io/jaxcompsci/r-sv_cnv_annotate:4.1.1'
Expand All @@ -16,6 +16,7 @@ process ANNOTATE_GENES_SV {
tuple val(sampleID), file("*.manta_lumpy_delly_svaba_sv_annotated_genes*.bed"), val(normal_name), val(tumor_name), emit: annot_sv_genes_bedpe

script:

if (suppl_switch == "main")
"""
Rscript ${projectDir}/bin/pta/annotate-bedpe-with-genes-mouse.r \
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ manifest {
homePage = "https://github.com/TheJacksonLaboratory/cs-nf-pipelines"
mainScript = "main.nf"
nextflowVersion = "!>=22.04.3"
version = "0.6.0"
version = "0.6.1"
author = 'Michael Lloyd, Brian Sanderson, Barry Guglielmo, Sai Lek, Peter Fields, Harshpreet Chandok, Carolyn Paisie, Gabriel Rech, Anuj Srivastava. Copyright Jackson Laboratory 2024'
}

Expand Down

0 comments on commit 331bf8d

Please sign in to comment.