Skip to content
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

new module: RESEQ/RESEQ #4440

Open
3 of 4 tasks
adamrtalbot opened this issue Nov 28, 2023 · 10 comments · May be fixed by #5354
Open
3 of 4 tasks

new module: RESEQ/RESEQ #4440

adamrtalbot opened this issue Nov 28, 2023 · 10 comments · May be fixed by #5354
Assignees
Labels
new module Adding a new module

Comments

@adamrtalbot
Copy link
Contributor

Is there an existing module for this?

  • I have searched for the existing module

Is there an open PR for this?

  • I have searched for existing PRs

Is there an open issue for this?

  • I have searched for existing issues

Are you going to work on this?

  • If I'm planning to work on this module, I added myself to the Assignees to facilitate tracking who is working on the module
@adamrtalbot adamrtalbot added the new module Adding a new module label Nov 28, 2023
@adamrtalbot
Copy link
Contributor Author

@adamrtalbot
Copy link
Contributor Author

@aperz aperz self-assigned this Mar 18, 2024
@aperz
Copy link

aperz commented Mar 19, 2024

@adamrtalbot could you supply the exact data sets you used to run ReSeq? And the command you used, if that's possible :)

@adamrtalbot
Copy link
Contributor Author

I'm afraid it was at an old job. It should work with any 'normal' BAM as I remember.

@adamrtalbot
Copy link
Contributor Author

OK I managed to get it working with the test data files but I had to use the flag --adapterFile TruSeq_single to disable adapters!

@adamrtalbot
Copy link
Contributor Author

adamrtalbot commented Mar 19, 2024

OK, an additional thing I had to add was the coverage (-c). With the homo_sapiens data:

reseq illuminaPE \
    --verbosity 4 \
    -j 4 \
    -r genome.fasta \
    -b test.paired_end.sorted.bam \
    -c 1 \
    --adapterFile TruSeq_single \
    -1 test.1.fastq.gz \
    -2 test.2.fastq.gz

@adamrtalbot
Copy link
Contributor Author

adamrtalbot commented Mar 19, 2024

Nextflow process will look something like this for paired end data:

reseq illuminaPE \\
    ${args} \\
    -j ${task.cpus} \\
    -r ${fasta} \\
    -b ${bam} \\
    -1 ${prefix}.1.fastq.gz \\
    -2 ${prefix}.2.fastq.gz

@adamrtalbot
Copy link
Contributor Author

Genome: file(params.modules_testdata_base_path + 'genomics/homo_sapiens/genome/genome.fasta', checkIfExists: true)
Index: file(params.modules_testdata_base_path + 'genomics/homo_sapiens/genome/genome.fasta.fai', checkIfExists: true)
BAM: file(params.modules_testdata_base_path + genomics/homo_sapiens/illumina/bam/test.paired_end.name.sorted.bam, checkIfExists: true)

@aperz
Copy link

aperz commented Mar 20, 2024

Awesome, thank you

@aperz aperz linked a pull request Mar 20, 2024 that will close this issue
17 tasks
@aperz
Copy link

aperz commented Mar 29, 2024

Trying to solve schmeing/ReSeq#23

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
new module Adding a new module
Projects
No open projects
Status: No status
Development

Successfully merging a pull request may close this issue.

2 participants