-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Make input URIs with `&path=` actually work - also support query arrays
- Loading branch information
Showing
18 changed files
with
264 additions
and
112 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,8 +75,8 @@ From the command-line, do, e.g.: | |
|
||
```bash | ||
# export NXF_VER=23.04.3 | ||
export NXF_PLUGINS_TEST_REPOSITORY=https://github.com/quiltdata/nf-quilt/releases/download/0.7.6/nf-quilt-0.7.6-meta.json | ||
nextflow run main.nf -plugins [email protected].6 | ||
export NXF_PLUGINS_TEST_REPOSITORY=https://github.com/quiltdata/nf-quilt/releases/download/0.7.7/nf-quilt-0.7.7-meta.json | ||
nextflow run main.nf -plugins [email protected].7 | ||
``` | ||
|
||
For Tower, you can use the "Pre-run script" to set the environment variables. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/env nextflow | ||
/* groovylint-disable CompileStatic */ | ||
|
||
nextflow.enable.dsl=2 | ||
|
||
test_file_local = 'README.md' | ||
test_file_s3 = 's3://quilt-example/examples/hurdat2/README.md' | ||
test_file_quilt = 'quilt+s3://quilt-example#package=examples/hurdat2&path=README.md' | ||
|
||
myFileChannel = Channel.fromList([file(test_file_local), file(test_file_s3), file(test_file_quilt)]) | ||
|
||
process CHECK_INPUT { | ||
input: | ||
path input | ||
|
||
output: | ||
path 'README.md', emit: output | ||
|
||
script: | ||
""" | ||
ls -l | ||
echo $input | ||
cp -f $input ../../tmp | ||
""" | ||
} | ||
|
||
workflow { | ||
CHECK_INPUT(myFileChannel) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.