Skip to content

Commit

Permalink
refactor: Move uniqmap generation to references
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Nov 16, 2024
1 parent cb95feb commit f1d2b5a
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 32 deletions.
1 change: 1 addition & 0 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ workflow NFCORE_NASCENT {
params.bowtie2_index,
params.hisat2_index,
params.star_index,
params.homer_uniqmap
)
emit:
multiqc_report = NASCENT.out.multiqc_report // channel: /path/to/multiqc_report.html
Expand Down
3 changes: 2 additions & 1 deletion modules/nf-core/homer/findpeaks/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,12 @@
"fa_icon": "fas fa-copy",
"help_text": "> **NB** If none provided, index will be generated automatically from the FASTA reference."
},
"homer_uniqmap": {
"type": "string",
"description": "Path to HOMER uniqmap file or URL to download.",
"fa_icon": "fas fa-file-archive",
"help_text": "> **NB** If none provided, will be downloaded automatically from the HOMER website. See nf-core/references for generation"
},
"save_reference": {
"type": "boolean",
"description": "If generated by the pipeline save the BWA index in the results directory.",
Expand Down
42 changes: 11 additions & 31 deletions subworkflows/nf-core/homer/groseq/main.nf

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions workflows/nascent.nf
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ workflow NASCENT {
ch_bowtie2_index
ch_hisat2_index
ch_star_index
ch_uniqmap


main:
Expand Down Expand Up @@ -294,6 +295,7 @@ workflow NASCENT {
ch_gxf,
PREPARE_GENOME.out.fasta,
PREPARE_GENOME.out.chrom_sizes,
ch_uniqmap
)
ch_grohmm_multiqc = TRANSCRIPT_INDENTIFICATION.out.grohmm_td_plot.collect()
ch_homer_multiqc = TRANSCRIPT_INDENTIFICATION.out.homer_peaks
Expand Down

0 comments on commit f1d2b5a

Please sign in to comment.