local changes prior syncing with GitHub edits #5
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Some small bugs I encountered and fixed during my test run on the Cambridge HPC.
Change suffix in line 57 in SignificantKmerAnalysis.nf because for some reason the GFF files passed to the process now has .gff3 suffix instead of .gff, while the paths in references.txt file generated by the process WriteReferenceText are .gff in suffix.
Change line 214-216 of main.nf (subsequently line 88 and line 95 of SignificantKmerAnalysis.nf) because it seems that we are calling an absolute path on the host from inside the container when trying to run the R script, and when the task runs under Singularity, that host path isn’t mounted in the container, so Rscript can’t see it and errors with “No such file or directory”. I get around this by now adding a plot_script channel to pass it to the process, and Nextflow now sees the R script as a file and carries it to the work directory.
Change line 5 in BaktaAnnotate.nf to update the container.
By the way I also made some minor changes on the input file examples (e.g. cleaning the file path to hide the Sanger-ness in them) and edited README to ensure it targets the communication to broader users.