## load the dataset
data(Ec_core)
## perform a single gene deletion analysis (delete every gene one time)
gd <- geneDeletion(Ec_core)
## triple gene deletion analysis using the first ten genes
gd <- geneDeletion(Ec_core, genes = 10, combinations = 3)
## perform a double gene deletion analysis (delete all possible pairwise
## combinations of all genes)
gd <- geneDeletion(Ec_core, combinations = 2)
## perform a triple gene deletion analysis
## (very high number of optimizations)
gd <- geneDeletion(Ec_core, combinations = 3)
Run the code above in your browser using DataLab