Skip to content

Commit

Permalink
Merge branch 'dev' into feat/hello-seqera
Browse files Browse the repository at this point in the history
  • Loading branch information
kenibrewer committed Oct 27, 2024
2 parents ff0a41d + 7bda265 commit 6b6f95b
Show file tree
Hide file tree
Showing 25 changed files with 524,683 additions and 152 deletions.
17 changes: 11 additions & 6 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
{
"name": "nfcore",
"image": "nfcore/gitpod:latest",
"image": "ghcr.io/nextflow-io/training:latest",
"remoteUser": "gitpod",

"postCreateCommand": "pre-commit install --install-hooks",

"features": {
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}
},
"remoteEnv": {
"NXF_HOME": "/workspaces/.nextflow",
"HOST_PROJECT_PATH": "${localWorkspaceFolder}"
},
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
Expand All @@ -13,12 +17,13 @@
"settings": {
"python.defaultInterpreterPath": "/opt/conda/bin/python"
},

// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"nf-core.nf-core-extensionpack"
"nf-core.nf-core-extensionpack",
"nextflow.nextflow",
"codezombiech.gitignore",
]
}
},
Expand Down
9 changes: 4 additions & 5 deletions docs/hello_nextflow/05_hello_operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,6 @@ Let's write a new process to define how that's going to work, based on the comma
process GATK_GENOMICSDB {
container "community.wave.seqera.io/library/gatk4:4.5.0.0--730ee8817e436867"
publishDir 'results_genomics', mode: 'copy'
input:
Expand Down Expand Up @@ -736,8 +735,8 @@ _Before:_

```groovy title="hello-operators.nf" linenums="78"
input:
path all_gvcfs_ch
path all_idxs_ch
path all_gvcfs
path all_idxs
path interval_list
val cohort_name
```
Expand All @@ -746,8 +745,8 @@ _After:_

```groovy title="hello-operators.nf" linenums="78"
input:
path all_gvcfs_ch
path all_idxs_ch
path all_gvcfs
path all_idxs
path interval_list
val cohort_name
path ref_fasta
Expand Down
Loading

0 comments on commit 6b6f95b

Please sign in to comment.