-
Notifications
You must be signed in to change notification settings - Fork 10
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
NextFlow #112
Comments
The log says "bsub" command wasn't found. This is the program to handle the queue system LSF. Which queue system are you using? |
Actually we are using a local server, not a cluster. Can we still run the pipeline using Nextflow? In case not, I've taken a look at the manual implementation but also see "bsub" commands there. Would the fix be simply to run the code directly? Ie instead of |
It should be possible to run locally but it will take very long. I am not good at nextflow, but this is how google says: To run Nextflow without LSF, simply set the "executor" option in your Nextflow configuration file to "local"; this will instruct Nextflow to run all pipeline tasks on the machine where you launched the command, effectively bypassing the need for a cluster job scheduler like LSF.
When to use "local": This is suitable for testing your pipeline on a single machine, running small workflows, or when you don't require large-scale cluster computing. |
Ah I understand. I've changed the config file to I'm getting a new error now, that
I'm not sure where this bwa_mem.pl command is coming from, since I have bwa-mem2 installed in the conda env I'm using to run nextflow. Using grep I see bwa_mem.pl is referenced in the |
Oh, that's used for remapping bams, which is something you usually don't do. Indeed I think that's only an internal option for the Sanger. From your log it seems you invoked nextflow with: So you were not requesting remapping. Can you share your |
Here is the test_samplesheet.csv: test_samplesheet.csv. I wanted to test the pipeline on the test files provided by you to just try and get the pipeline up and running first. I assumed the /test/duplex.bam was an example bam for input, the /test/normal.bam was the corresponding matched normal, and that /test/hs37d5.fa.gz was the reference (which i had to prep and index myself, using this script: prepGenome.txt.txt Just incase I made some false assumptions, I retried running the pipeline with my data, and did get a different error. Not sure if this helps, but here is the log and the associated samplesheet: |
Thanks. I see in your log that it says "remap:true". You don't want that. Could you try specifying in the call to nextflow "remap false"? I'd also recommend using the noise_bed and snp_bed masks. |
Also, the log says: |
I'm trying to run the Nextflow pipeline and it seems that the pipeline creates temporary folders during the analysis under the "work" folder, however during execution it for some reason cannot find these folders (which I verify do exist once the pipeline has errored out). I've included a screenshot of the error, as well as the whole .log file. I'm sure this is just some small issue (ie. previous step not functioning exactly as expected, ergo next step errors completely), but because the error itself isn't that informative I don't know where within the pipeline to look for troubleshooting.
Any help is appreciated!
2025_01_23_nextflow.log

The text was updated successfully, but these errors were encountered: