def atacseq_iface_with_resources(
atacseq_iface_without_resources, resources):
"""
:param dict atacseq_iface_without_resources: PipelineInterface config
data, minus a resources section
:param Mapping resources: resources section of PipelineInterface
configuration data
:return Mapping: pipeline interface data for ATAC-Seq pipeline, with all
of the base sections plus resources section
"""
iface_data = copy.deepcopy(atacseq_iface_without_resources)
iface_data["resources"] = copy.deepcopy(resources)
return iface_data
评论列表
文章目录