-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
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
Verify the user inputs are correct #42
Comments
It would be good to also check that the input files exists (fasta, index and bed) and that the BAM folder also exists (see http://www.nextflow.io/docs/latest/script.html#check-file-attributes). I think that you can do something like: assert params.fasta_ref.exists() |
values of 0 for |
It was not necessary a good idea for everything: some files might only be accessible during the execution of the processes (for example if you put the fasta ref on the scratch of the nodes of a cluster). We could either move the checks to later points (in the processes themselves) or add an option to prevent the checks, or even remove them? |
For parameters:
See here for example
The text was updated successfully, but these errors were encountered: