view CommandSingleCellExtraction.py @ 1:aba3655fdef0 draft

"planemo upload for repository https://github.com/ohsu-comp-bio/quantification commit 897a7dc7cb43e45d6f0fdfe2b2970e59f20f8853"
author watsocam
date Fri, 11 Mar 2022 23:35:52 +0000
parents 928db0f952e3
children
line wrap: on
line source

#Script for parsing command line arguments and running single-cell
#data extraction functions
#Joshua Hess
import ParseInput
import SingleCellDataExtraction

#Parse the command line arguments
args = ParseInput.ParseInputDataExtract()

#Run the MultiExtractSingleCells function
SingleCellDataExtraction.MultiExtractSingleCells(**args)