-
Notifications
You must be signed in to change notification settings - Fork 117
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
Implement "shift_reads" parameter #375
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
7d31e7f
Revert "Revert "DO NOT MERGE yet: Discuss fixes of #164 #168 #169 ""
lpantano 36a67a0
get working shift and make it false by default
lpantano cc5ca5d
integrated dev changes
lpantano e6d9190
remove bam to bed
lpantano bb2d9fb
fix editorial
lpantano 6dea6cd
fix default of shift param
lpantano b1fb091
update changelog
lpantano 58be205
Update CHANGELOG.md
lpantano c57f303
Update nextflow_schema.json
lpantano 25055dd
Update subworkflows/local/bam_shift_reads.nf
lpantano c32f71e
Update nextflow_schema.json
lpantano fda14bd
Update workflows/atacseq.nf
lpantano 50afafb
Update workflows/atacseq.nf
lpantano f3ff187
Update workflows/atacseq.nf
lpantano f11e231
Update format include workflows/atacseq.nf
lpantano 347d98e
Update channel format workflows/atacseq.nf
lpantano File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
process DEEPTOOLS_ALIGNMENTSIEVE { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
tag "$meta.id" | ||
label 'process_medium' | ||
|
||
conda "bioconda::deeptools=3.5.1" | ||
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? | ||
'https://depot.galaxyproject.org/singularity/deeptools:3.5.1--py_0' : | ||
'biocontainers/deeptools:3.5.1--py_0' }" | ||
|
||
input: | ||
tuple val(meta), path(bam), path(bai) | ||
|
||
output: | ||
tuple val(meta), path("*.bam"), emit: bam | ||
path "versions.yml", emit: versions | ||
|
||
when: | ||
task.ext.when == null || task.ext.when | ||
|
||
script: | ||
def args = task.ext.args ?: '' | ||
def prefix = task.ext.prefix ?: "${meta.id}" | ||
|
||
""" | ||
alignmentSieve \\ | ||
$args \\ | ||
-b $bam \\ | ||
-o ${prefix}.bam \\ | ||
--numberOfProcessors $task.cpus | ||
|
||
cat <<-END_VERSIONS > versions.yml | ||
"${task.process}": | ||
deeptools: \$(alignmentSieve --version | sed -e "s/alignmentSieve //g") | ||
END_VERSIONS | ||
""" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
include { SAMTOOLS_SORT } from '../../modules/nf-core/samtools/sort/main' | ||
include { SAMTOOLS_INDEX } from '../../modules/nf-core/samtools/index/main' | ||
include { SAMTOOLS_FLAGSTAT } from '../../modules/nf-core/samtools/flagstat/main' | ||
include { DEEPTOOLS_ALIGNMENTSIEVE } from '../../modules/local/deeptools_alignmentsieve' | ||
|
||
workflow BAM_SHIFT_READS { | ||
take: | ||
ch_bam_bai // channel: [ val(meta), [ bam ], [bai] ] | ||
ch_fasta // channel: [ fasta ] | ||
|
||
main: | ||
ch_versions = Channel.empty() | ||
|
||
// | ||
// Shift reads | ||
// | ||
DEEPTOOLS_ALIGNMENTSIEVE ( | ||
ch_bam_bai | ||
) | ||
ch_versions = ch_versions.mix(DEEPTOOLS_ALIGNMENTSIEVE.out.versions) | ||
|
||
// | ||
// Sort reads | ||
// | ||
SAMTOOLS_SORT ( | ||
DEEPTOOLS_ALIGNMENTSIEVE.out.bam, | ||
ch_fasta | ||
) | ||
ch_versions = ch_versions.mix(SAMTOOLS_SORT.out.versions) | ||
|
||
// | ||
// Index reads | ||
// | ||
SAMTOOLS_INDEX ( | ||
SAMTOOLS_SORT.out.bam | ||
) | ||
ch_versions = ch_versions.mix(SAMTOOLS_INDEX.out.versions) | ||
|
||
// | ||
// Run samtools flagstat | ||
// | ||
SAMTOOLS_FLAGSTAT ( | ||
SAMTOOLS_SORT.out.bam.join(SAMTOOLS_INDEX.out.bai, by: [0]) | ||
) | ||
ch_versions = ch_versions.mix(SAMTOOLS_FLAGSTAT.out.versions) | ||
|
||
emit: | ||
bam = SAMTOOLS_SORT.out.bam // channel: [ val(meta), [ bam ] ] | ||
bai = SAMTOOLS_INDEX.out.bai // channel: [ val(meta), [ bai ] ] | ||
csi = SAMTOOLS_INDEX.out.csi // channel: [ val(meta), [ csi ] ] | ||
flagstat = SAMTOOLS_FLAGSTAT.out.flagstat // channel: [ val(meta), [ flagstat ] ] | ||
versions = ch_versions // channel: [ versions.yml ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -19,6 +19,8 @@ include { softwareVersionsToYAML } from '../subworkflows/nf-core/utils_nfcore_pi | |||||
include { methodsDescriptionText } from '../subworkflows/local/utils_nfcore_atacseq_pipeline' | ||||||
include { INPUT_CHECK } from '../subworkflows/local/input_check' | ||||||
include { ALIGN_STAR } from '../subworkflows/local/align_star' | ||||||
include { BAM_SHIFT_READS as MERGED_LIBRARY_BAM_SHIFT_READS } from '../subworkflows/local/bam_shift_reads' | ||||||
include { BAM_SHIFT_READS as MERGED_REPLICATE_BAM_SHIFT_READS } from '../subworkflows/local/bam_shift_reads' | ||||||
include { BIGWIG_PLOT_DEEPTOOLS as MERGED_LIBRARY_BIGWIG_PLOT_DEEPTOOLS } from '../subworkflows/local/bigwig_plot_deeptools' | ||||||
include { BAM_FILTER_BAMTOOLS as MERGED_LIBRARY_FILTER_BAM } from '../subworkflows/local/bam_filter_bamtools' | ||||||
include { BAM_BEDGRAPH_BIGWIG_BEDTOOLS_UCSC as MERGED_LIBRARY_BAM_TO_BIGWIG } from '../subworkflows/local/bam_bedgraph_bigwig_bedtools_ucsc' | ||||||
|
@@ -123,6 +125,24 @@ workflow ATACSEQ { | |||||
// See the documentation https://nextflow-io.github.io/nf-validation/samplesheets/fromSamplesheet/ | ||||||
// ! There is currently no tooling to help you write a sample sheet schema | ||||||
|
||||||
// | ||||||
// Check if reads are all paired-end if 'shift_reads' parameter is set | ||||||
// | ||||||
if (params.shift_reads) { | ||||||
INPUT_CHECK | ||||||
.out | ||||||
.reads | ||||||
.filter { meta, reads -> meta.single_end } | ||||||
.collect() | ||||||
.map { | ||||||
it -> | ||||||
def count = it.size() | ||||||
if (count > 0) { | ||||||
exit 1, 'The parameter --shift_reads can only be applied if all samples are paired-end.' | ||||||
} | ||||||
} | ||||||
} | ||||||
|
||||||
// | ||||||
// SUBWORKFLOW: Read QC and trim adapters | ||||||
// | ||||||
|
@@ -199,6 +219,7 @@ workflow ATACSEQ { | |||||
[] | ||||||
) | ||||||
ch_genome_bam = FASTQ_ALIGN_CHROMAP.out.bam | ||||||
ch_genome_bam_index = FASTQ_ALIGN_CHROMAP.out.bai | ||||||
ch_samtools_stats = FASTQ_ALIGN_CHROMAP.out.stats | ||||||
ch_samtools_flagstat = FASTQ_ALIGN_CHROMAP.out.flagstat | ||||||
ch_samtools_idxstats = FASTQ_ALIGN_CHROMAP.out.idxstats | ||||||
|
@@ -329,11 +350,38 @@ workflow ATACSEQ { | |||||
ch_versions = ch_versions.mix(MERGED_LIBRARY_PICARD_COLLECTMULTIPLEMETRICS.out.versions.first()) | ||||||
} | ||||||
|
||||||
// | ||||||
// SUBWORKFLOW: Shift paired-end reads | ||||||
// | ||||||
ch_merged_library_filter_bam = MERGED_LIBRARY_FILTER_BAM.out.bam | ||||||
ch_merged_library_filter_bai = MERGED_LIBRARY_FILTER_BAM.out.bai | ||||||
ch_merged_library_filter_flagstat = MERGED_LIBRARY_FILTER_BAM.out.flagstat | ||||||
ch_merged_library_filter_csi = MERGED_LIBRARY_FILTER_BAM.out.csi | ||||||
|
||||||
if (params.shift_reads && params.aligner != 'chromap' ) { | ||||||
MERGED_LIBRARY_BAM_SHIFT_READS ( | ||||||
ch_merged_library_filter_bam.join(ch_merged_library_filter_bai, by: [0]), | ||||||
ch_fasta | ||||||
.map { | ||||||
[ [:], it ] | ||||||
} | ||||||
) | ||||||
ch_versions = ch_versions.mix(MERGED_LIBRARY_BAM_SHIFT_READS.out.versions) | ||||||
|
||||||
ch_merged_library_filter_bam = MERGED_LIBRARY_BAM_SHIFT_READS.out.bam | ||||||
ch_merged_library_filter_bai = MERGED_LIBRARY_BAM_SHIFT_READS.out.bai | ||||||
ch_merged_library_filter_flagstat = MERGED_LIBRARY_BAM_SHIFT_READS.out.flagstat | ||||||
ch_merged_library_filter_csi = MERGED_LIBRARY_BAM_SHIFT_READS.out.csi | ||||||
|
||||||
} | ||||||
|
||||||
// | ||||||
// SUBWORKFLOW: Normalised bigWig coverage tracks | ||||||
// | ||||||
MERGED_LIBRARY_BAM_TO_BIGWIG ( | ||||||
MERGED_LIBRARY_FILTER_BAM.out.bam.join(MERGED_LIBRARY_FILTER_BAM.out.flagstat, by: [0]), | ||||||
// MERGED_LIBRARY_FILTER_BAM.out.bam.join(MERGED_LIBRARY_FILTER_BAM.out.flagstat, by: [0]), | ||||||
// ch_chrom_sizes | ||||||
Comment on lines
+382
to
+383
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
ch_merged_library_filter_bam.join(ch_merged_library_filter_flagstat, by: [0]), | ||||||
ch_chrom_sizes | ||||||
) | ||||||
ch_versions = ch_versions.mix(MERGED_LIBRARY_BAM_TO_BIGWIG.out.versions) | ||||||
|
@@ -353,11 +401,9 @@ workflow ATACSEQ { | |||||
} | ||||||
|
||||||
// Create channels: [ meta, [bam], [bai] ] or [ meta, [ bam, control_bam ] [ bai, control_bai ] ] | ||||||
MERGED_LIBRARY_FILTER_BAM | ||||||
.out | ||||||
.bam | ||||||
.join(MERGED_LIBRARY_FILTER_BAM.out.bai, by: [0], remainder: true) | ||||||
.join(MERGED_LIBRARY_FILTER_BAM.out.csi, by: [0], remainder: true) | ||||||
ch_merged_library_filter_bam | ||||||
.join(ch_merged_library_filter_bai, by: [0], remainder: true) | ||||||
.join(ch_merged_library_filter_csi, by: [0], remainder: true) | ||||||
.map { | ||||||
meta, bam, bai, csi -> | ||||||
if (bai) { | ||||||
|
@@ -562,32 +608,51 @@ workflow ATACSEQ { | |||||
ch_markduplicates_replicate_metrics = MERGED_REPLICATE_MARKDUPLICATES_PICARD.out.metrics | ||||||
ch_versions = ch_versions.mix(MERGED_REPLICATE_MARKDUPLICATES_PICARD.out.versions) | ||||||
|
||||||
// | ||||||
// SUBWORKFLOW: Shift paired-end reads | ||||||
// Shift again, as ch_merged_library_replicate_bam is generated out of unshifted reads | ||||||
// | ||||||
ch_merged_replicate_markduplicate_bam = MERGED_REPLICATE_MARKDUPLICATES_PICARD.out.bam | ||||||
ch_merged_replicate_markduplicate_bai = MERGED_REPLICATE_MARKDUPLICATES_PICARD.out.bai | ||||||
ch_merged_replicate_markduplicate_flagstat = MERGED_REPLICATE_MARKDUPLICATES_PICARD.out.flagstat | ||||||
ch_merged_replicate_markduplicate_csi = MERGED_REPLICATE_MARKDUPLICATES_PICARD.out.csi | ||||||
|
||||||
if (params.shift_reads && params.aligner != 'chromap' ) { | ||||||
MERGED_REPLICATE_BAM_SHIFT_READS ( | ||||||
ch_merged_replicate_markduplicate_bam.join(ch_merged_replicate_markduplicate_bai, by: [0]), | ||||||
ch_fasta | ||||||
.map { | ||||||
[ [:], it ] | ||||||
} | ||||||
) | ||||||
ch_versions = ch_versions.mix(MERGED_REPLICATE_BAM_SHIFT_READS.out.versions) | ||||||
|
||||||
ch_merged_replicate_markduplicate_bam = MERGED_REPLICATE_BAM_SHIFT_READS.out.bam | ||||||
ch_merged_replicate_markduplicate_bai = MERGED_REPLICATE_BAM_SHIFT_READS.out.bai | ||||||
ch_merged_replicate_markduplicate_flagstat = MERGED_REPLICATE_BAM_SHIFT_READS.out.flagstat | ||||||
ch_merged_replicate_markduplicate_csi = MERGED_REPLICATE_BAM_SHIFT_READS.out.csi | ||||||
} | ||||||
if (!params.skip_merged_replicate_bigwig) { | ||||||
// | ||||||
// SUBWORKFLOW: Normalised bigWig coverage tracks | ||||||
// | ||||||
MERGED_REPLICATE_BAM_TO_BIGWIG ( | ||||||
MERGED_REPLICATE_MARKDUPLICATES_PICARD.out.bam.join(MERGED_REPLICATE_MARKDUPLICATES_PICARD.out.flagstat, by: [0]), | ||||||
ch_merged_replicate_markduplicate_bam.join(ch_merged_replicate_markduplicate_flagstat, by: [0]), | ||||||
ch_chrom_sizes | ||||||
) | ||||||
ch_ucsc_bedgraphtobigwig_replicate_bigwig = MERGED_REPLICATE_BAM_TO_BIGWIG.out.bigwig | ||||||
ch_versions = ch_versions.mix(MERGED_REPLICATE_BAM_TO_BIGWIG.out.versions) | ||||||
} | ||||||
|
||||||
// Create channels: [ meta, bam, ([] for control_bam) ] | ||||||
if (params.with_control) { | ||||||
MERGED_REPLICATE_MARKDUPLICATES_PICARD | ||||||
.out | ||||||
.bam | ||||||
ch_merged_replicate_markduplicate_bam | ||||||
.map { | ||||||
meta, bam -> | ||||||
meta.control ? null : [ meta.id, bam ] | ||||||
} | ||||||
.set { ch_bam_merged_control } | ||||||
|
||||||
MERGED_REPLICATE_MARKDUPLICATES_PICARD | ||||||
.out | ||||||
.bam | ||||||
ch_merged_replicate_markduplicate_bam | ||||||
.map { | ||||||
meta, bam -> | ||||||
meta.control ? [ meta.control, meta, bam ] : null | ||||||
|
@@ -596,15 +661,14 @@ workflow ATACSEQ { | |||||
.map { it -> [ it[1] , it[2], it[3] ] } | ||||||
.set { ch_bam_replicate } | ||||||
} else { | ||||||
MERGED_REPLICATE_MARKDUPLICATES_PICARD | ||||||
.out | ||||||
.bam | ||||||
ch_merged_replicate_markduplicate_bam | ||||||
.map { | ||||||
meta, bam -> | ||||||
[ meta , bam, [] ] | ||||||
} | ||||||
.set { ch_bam_replicate } | ||||||
} | ||||||
|
||||||
// | ||||||
// SUBWORKFLOW: Call peaks with MACS2, annotate with HOMER and perform downstream QC | ||||||
// | ||||||
|
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would rather push this to nf-core/modules - there is already other recipes for deeptools tools --> another one being added should be fairly easy to do :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And it looks good :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, I will try to do that, it is true is already there so it should be even easier. thanks!