Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ Added

Changed
-------
- Deprecate the old yaml based ATAC-seq workflow in favour of the Python one
(previously in beta) implemented in the process ``workflow-atac-seq``
and bump the version of the new workflow to 4.0.0

Fixed
-----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


class WorkflowATACSeq(Process):
"""Beta ATAC-Seq workflow.
"""ATAC-Seq workflow.

This ATAC-seq pipeline follows the official ENCODE DCC pipeline with additional modifications.

Expand All @@ -31,13 +31,13 @@ class WorkflowATACSeq(Process):
Finally, a bigWig file is produced along with the ChipQC and MultiQC reports.
"""

slug = "workflow-atac-seq-beta"
name = "ATAC-Seq (Beta)"
slug = "workflow-atac-seq"
name = "ATAC-Seq"
requirements = {
"expression-engine": "jinja",
}
data_name = "{{ reads|name|default('?') }}"
version = "0.1.0"
version = "4.0.0"
entity = {"type": "sample"}
process_type = "data:workflow:atacseq"
category = "ATAC-seq"
Expand Down Expand Up @@ -78,7 +78,7 @@ class DownsamplingOptions:
)
two_pass = BooleanField(
label="2-pass mode",
default=False,
default=True,
disabled="!downsampling_options.downsample_reads",
description="Enable two-pass mode when down-sampling. "
"Two-pass mode is twice as slow but with much reduced memory.",
Expand Down
Loading