We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#!/usr/bin/env nextflow Channel .fromPath('hello.txt') .map { [it, it.size()] } .set { input_ch } process foo { disk { $x.size() < 600.GB ? 400.GB : 700.GB } input: set file(x), val(sz) from input_ch """ you_command --input $x """ }
In human words:
disk { $x.size() < 600.GB ? 400.GB : 700.GB } "Is the input file size < 600GB?|
disk { $x.size() < 600.GB ? 400.GB : 700.GB }
The text was updated successfully, but these errors were encountered:
cgpu
No branches or pull requests
In human words:
disk { $x.size() < 600.GB ? 400.GB : 700.GB }
"Is the input file size < 600GB?|
The text was updated successfully, but these errors were encountered: