view CommandSingleCellExtraction.py @ 2:46b897eb2c8e draft

"planemo upload for repository https://github.com/ohsu-comp-bio/quantification commit 150f21e52974f99ec39bf92d9e7e611861860d0f"
author watsocam
date Wed, 30 Mar 2022 16:56:29 +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)