view CommandSingleCellExtraction.py @ 0:928db0f952e3 draft

"planemo upload for repository https://github.com/ohsu-comp-bio/quantification commit a4349062e9177b5e60fb7c49115c57299e0d648d-dirty"
author perssond
date Fri, 12 Mar 2021 00:19:24 +0000
parents
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)