view CommandSingleCellExtraction.py @ 3:c09e444635d9 draft

"planemo upload for repository https://github.com/ohsu-comp-bio/quantification commit 98cddbe59b6834a2368a0085b3938d5058f6d10b"
author watsocam
date Thu, 07 Apr 2022 16:54:04 +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)