diff --git a/docs/CHANGELOG.rst b/docs/CHANGELOG.rst index d9963d49c..92d018291 100644 --- a/docs/CHANGELOG.rst +++ b/docs/CHANGELOG.rst @@ -45,6 +45,7 @@ Changed ``files-to-fastq-single`` and ``files-to-fastq-paired`` - Update the ``pca`` process with the functionality from the deprecated ``pca-beta`` process +- Bump resources requirements for ``arriba`` process Fixed ----- diff --git a/resolwe_bio/processes/fusion_calling/arriba.py b/resolwe_bio/processes/fusion_calling/arriba.py index 5a45ad75e..5c1de36cc 100644 --- a/resolwe_bio/processes/fusion_calling/arriba.py +++ b/resolwe_bio/processes/fusion_calling/arriba.py @@ -40,7 +40,7 @@ class Arriba(Process): slug = "arriba" name = "Arriba" process_type = "data:genefusions:arriba" - version = "1.1.0" + version = "1.1.1" category = "Gene fusions" scheduling_class = SchedulingClass.BATCH entity = {"type": "sample"} @@ -51,7 +51,7 @@ class Arriba(Process): }, "resources": { "cores": 1, - "memory": 12288, + "memory": 16384, }, } data_name = '{{ bam|name|default("?") }}'