mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Homer/findpeaks improvements (#1436)
* fix(homer): Update expected file path to improve caching * docs(homer): Update findpeaks * test(homer): Add maketagdirectory dependency Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>
This commit is contained in:
parent
d16f1ea4d7
commit
e3a5795652
3 changed files with 7 additions and 4 deletions
|
@ -13,7 +13,7 @@ process HOMER_FINDPEAKS {
|
|||
tuple val(meta), path(tagDir)
|
||||
|
||||
output:
|
||||
tuple val(meta), path("*peaks.txt"), emit: txt
|
||||
tuple val(meta), path("*.peaks.txt"), emit: txt
|
||||
path "versions.yml" , emit: versions
|
||||
|
||||
when:
|
||||
|
|
|
@ -7,7 +7,9 @@ tools:
|
|||
- homer:
|
||||
description: |
|
||||
HOMER (Hypergeometric Optimization of Motif EnRichment) is a suite of tools for Motif Discovery and next-gen sequencing analysis.
|
||||
documentation: http://homer.ucsd.edu/homer/
|
||||
homepage: "http://homer.ucsd.edu/homer/index.html"
|
||||
documentation: "http://homer.ucsd.edu/homer/"
|
||||
tool_dev_url: "http://homer.ucsd.edu/homer/ngs/peaks.html"
|
||||
doi: 10.1016/j.molcel.2010.05.004.
|
||||
licence: ["GPL-3.0-or-later"]
|
||||
input:
|
||||
|
@ -29,7 +31,7 @@ output:
|
|||
- peaks:
|
||||
type: file
|
||||
description: The found peaks
|
||||
pattern: "*peaks.txt"
|
||||
pattern: "*.peaks.txt"
|
||||
- versions:
|
||||
type: file
|
||||
description: File containing software versions
|
||||
|
|
|
@ -876,6 +876,7 @@ homer/annotatepeaks:
|
|||
|
||||
homer/findpeaks:
|
||||
- modules/homer/findpeaks/**
|
||||
- modules/homer/maketagdirectory/**
|
||||
- tests/modules/homer/findpeaks/**
|
||||
|
||||
homer/maketagdirectory:
|
||||
|
|
Loading…
Reference in a new issue