[External] [Bug] Ability to submit to SRA without ref_gff and ref_fasta? #34
-
What is the Bug Related To? Please Provide a Description. Categorize the Severity of the Bug from 1-5: 3
Please Complete the Following Information:
Please Outline Necessary Steps to Replicate Bug (Go to.. Click on... Install the following... etc.): Caused by: Tip: you can replicate the issue by changing to the process work dir and entering the command Any Additional Context or Information? Has There Been Any Progress Made So Far Towards this Request? Any Concrete Instructions to Resolve the Bug or Helpful Resources to Reference? Screenshots or Logs? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@mollymitchell70 Thanks for submitting the issue. I am looking into it and noticed the following in the error message:
This is because it is attempting to read in the standard_params.config within the conf directory instead of the params file you are passing in. It should be resolved after removing the "standard" after -profile: nextflow run main.nf -profile conda -entry only_initial_submission -params-file $PWD/nf_params/standard.yml Using this should resolve the issue and you should be able to run the only_initial_submission entrypoint without a reference fasta/gff. Only a validated metadata file and fasta file would be needed. |
Beta Was this translation helpful? Give feedback.
@mollymitchell70 Thanks for submitting the issue.
I am looking into it and noticed the following in the error message:
"WARNING: Could not load standard_params.config from /blue/bphl-florida/mollymitchell/tostadas/tostadas/nf_params/conf/"
This is because it is attempting to read in the standard_params.config within the conf directory instead of the params file you are passing in. It should be resolved after removing the "standard" after -profile:
nextflow run main.nf -profile conda -entry only_initial_submission -params-file $PWD/nf_params/standard.yml
Using this should resolve the issue and you should be able to run the only_initial_submission entrypoint without a reference fasta/gff. …