Skip to content

Commit 6bdf415

Browse files
committed
Merged in Nathan's changes for CMD_Bio Comamand line pramaters
1 parent 2dbd1e7 commit 6bdf415

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

projects/cmd_bio/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ This project is a command line implementation of BioGears for processing Scenari
1212

1313
**GENSTATES**: Generate Stabalized Patient States for all Patients
1414

15-
**VALIDATE** Run one ore more validate senarios arguments include drug,patient,system,validation, or all.
15+
**VALIDATE** Run one ore more validate senarios arguments include drug,patient,system or all. Where `VALIDATE all` is the same as providing the following `VALIDATE drug patient system VERIFY`
1616

17-
**VERIFRY**: Run all verifications and validations senarios mentioned above
17+
**VERIFY**: Run Verification.config
1818

1919
**THREADS**: Takes and Integer to control the number of threads the pool will run when running multiple scnearios.
2020

projects/cmd_bio/src/cmd_bio_main.cpp

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,6 @@ int main(int argc, char** argv)
9090
}
9191

9292
if (args.Option("VERIFY")) {
93-
run_patient_validation = true;
94-
run_drug_validation = true;
95-
run_system_validation = true;
9693
run_verification = true;
9794
}
9895
#ifdef CMD_BIO_SUPPORT_CIRCUIT_TEST
@@ -122,12 +119,10 @@ int main(int argc, char** argv)
122119
run_drug_validation = true;
123120
} else if (test == "system") {
124121
run_system_validation = true;
125-
} else if (test == "validation") {
126-
run_verification = true;
127122
} else if (test == "all") {
128123
run_patient_validation = run_drug_validation = run_system_validation = run_verification = true;
129124
} else {
130-
std::cout << "Warrning: No Validation known as " << test << "exists.\n";
125+
std::cout << "Warning: No Validation known as " << test << "exists.\n";
131126
}
132127
}
133128
}

0 commit comments

Comments
 (0)