Skip to content

Instantly share code, notes, and snippets.

@andrewcstewart
Created January 8, 2015 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewcstewart/93e28c26c10a8236840c to your computer and use it in GitHub Desktop.
Save andrewcstewart/93e28c26c10a8236840c to your computer and use it in GitHub Desktop.
example of importing a directory of reference data for nextflow
#!/usr/bin/env nextflow
params.reference = "/path/to/reference"
reference = file(params.reference)
process assembly {
container 'my/dockercontainer'
input:
file reference
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment