Skip to content

Commit

Permalink
Rename beta and remove legacy Cut&Run workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
romunov committed Mar 28, 2024
1 parent 9e5ee37 commit f511849
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 694 deletions.
2 changes: 2 additions & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Changed
-------
- Remove ``rnaseqc-qc`` 3' bias statistics from MultiQC report
- Remove ``rnaseqc-qc`` from RNA-seq workflows
- Remove ``cut_and_run.yml``
- Rename ``workflow-cutnrun-beta`` to ``workflow-cutnrun``

Fixed
-----
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Beta Cut & Run workflow."""
"""Cut & Run workflow."""

from resolwe.process import (
BooleanField,
Expand All @@ -15,7 +15,7 @@


class WorkflowCUTnRUN(Process):
"""Beta Cut & Run workflow.
"""Cut & Run workflow.
Analysis of samples processed for high resolution mapping of DNA binding sites using
targeted nuclease strategy. The process is named CUT&RUN, which stands for
Expand All @@ -26,13 +26,13 @@ class WorkflowCUTnRUN(Process):
"""

slug = "workflow-cutnrun-beta"
name = "Beta Cut & Run workflow"
slug = "workflow-cutnrun"
name = "Cut & Run workflow"
requirements = {
"expression-engine": "jinja",
}
data_name = "{{ reads|name|default('?') }}"
version = "2.0.1"
version = "2.1.0"
entity = {
"type": "sample",
}
Expand Down
Loading

0 comments on commit f511849

Please sign in to comment.