Skip to content

Commit

Permalink
Release 0.9.2 (#43)
Browse files Browse the repository at this point in the history
* add nextflow schema

* remove hidden fields

* tweak the schema

* format files using intellij

* [FIX] Syncing stubs and scripts (#38)

* Add a basic nextflow_schema file (#37)

* add nextflow schema

* remove hidden fields

* tweak the schema

* fixing all stubs as requested

* adding stubs to rename_files module

Co-authored-by: Abhinav Sharma <[email protected]>

* update readme and trim config

* update the readme

* tweak readme

* Further updates for the readme

* update readme

* updated the benefits for NF wrapper

* [DEV] adding dag resources (#41)

* adding dag as png

* adding a topic to readme

* fixing wrong format

* fixing `dag-batch.png`

* Update error strategy (#42)

* Stubs and DAG file (#39)

* add nextflow schema

* remove hidden fields

* tweak the schema

* format files using intellij

* [FIX] Syncing stubs and scripts (#38)

* Add a basic nextflow_schema file (#37)

* add nextflow schema

* remove hidden fields

* tweak the schema

* fixing all stubs as requested

* adding stubs to rename_files module

Co-authored-by: Abhinav Sharma <[email protected]>

* update readme and trim config

* update the readme

* tweak readme

* Further updates for the readme

* update readme

* updated the benefits for NF wrapper

* [DEV] adding dag resources (#41)

* adding dag as png

* adding a topic to readme

* fixing wrong format

* fixing `dag-batch.png`

Co-authored-by: Davi Marcon <[email protected]>

* Update standard.config

Co-authored-by: Davi Marcon <[email protected]>

* ready for review

* [DEV] Adding notes about the native commands  (#44)

* adding my org notes

* removing org file and adding a markdown file

* restructure order of config values

Co-authored-by: Davi Marcon <[email protected]>
  • Loading branch information
abhi18av and Mxrcon authored Sep 23, 2021
1 parent 59f7650 commit 7b81c2c
Show file tree
Hide file tree
Showing 6 changed files with 456 additions and 134 deletions.
21 changes: 21 additions & 0 deletions conf/dev.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
profiles {
minikube {

params {
outdir = "/work/results"
}

process {
errorStrategy = { task.attempt < 3 ? 'retry' : 'ignore' }
executor = 'k8s'
}

k8s {
namespace = 'nfkube'
serviceAccount = 'nfkubelaunchersa'
storageClaimName = 'nfkubevolumeclaim'
storageMountPath = '/work'
}
}

}
Loading

0 comments on commit 7b81c2c

Please sign in to comment.