Skip to content

Commit fc9de8e

Browse files
committed
Nextflow recipe
1 parent e017fea commit fc9de8e

16 files changed

Lines changed: 98 additions & 5 deletions

File tree

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
graft wfcommons/wfchef/recipes/rnaseq/microstructures/**
2+
graft wfcommons/wfchef/recipes/rnaseq/microstructures
3+
graft wfcommons/wfchef/recipes/rnaseq
14
graft wfcommons/wfchef/recipes/epigenomics/microstructures/**
25
graft wfcommons/wfchef/recipes/epigenomics/microstructures
36
graft wfcommons/wfchef/recipes/epigenomics

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def run(self):
4949
'genome_recipe = wfcommons.wfchef.recipes:GenomeRecipe',
5050
'blast_recipe = wfcommons.wfchef.recipes:BlastRecipe',
5151
'bwa_recipe = wfcommons.wfchef.recipes:BwaRecipe',
52+
'rnaseq_recipe = wfcommons.wfchef.recipes:RnaseqRecipe',
5253
]
5354
},
5455
)

wfcommons/common/task.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def __init__(self,
8787
energy: Optional[int] = None,
8888
avg_power: Optional[float] = None,
8989
priority: Optional[int] = None,
90-
executedAt: Optional[str] = None,
90+
executed_at: Optional[str] = None,
9191
task_type: Optional[TaskType] = None,
9292
launch_dir: Optional[str] = None,
9393
logger: Optional[Logger] = None,
@@ -114,7 +114,7 @@ def __init__(self,
114114
self.priority: Optional[int] = priority
115115
self.type: Optional[TaskType] = task_type
116116
self.launch_dir: Optional[str] = launch_dir
117-
self.start_time: Optional[str] = str(datetime.now().astimezone().isoformat()) if not executedAt else executedAt
117+
self.start_time: Optional[str] = str(datetime.now().astimezone().isoformat()) if not executed_at else executed_at
118118
self.logger.debug(
119119
f"created task {self.task_id}: runtime => {self.runtime} seconds.")
120120

wfcommons/wfchef/recipes/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@
1818
from .genome import GenomeRecipe
1919
from .blast import BlastRecipe
2020
from .bwa import BwaRecipe
21+
from .rnaseq import RnaseqRecipe
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .recipe import RnaseqRecipe
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
,rnaseq-3l,rnaseq-6l
2+
rnaseq-t1l,0.004108531398080609,0.004108531398080609
3+
rnaseq-3l,0.0,0.0
4+
rnaseq-6l,,0.0
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

0 commit comments

Comments
 (0)