-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix conflicting package requirements * Initial `ruff` formatting * Added command line arguments to expose additional options * Fixed imports, `ruff` formatting and import sorting * Ignore Rout files * Migrate from `multi_bioservices` to `fast_bioservices` This also formats files using `ruff`, which makes it appear as if there are many more changes than actaully occured * Use fast_bioservices instead of multi_bioservices * Format with ruff, use fast_bioservices instead of multi_bioservices. This file may be deleted/reorganized because it is related to microarray, which we are removing from COMO * Fix arguments, add biodbnet progress * Fix `Input` usage * Fix argument formatting usage * Fix argument usage * Ignore microarray.db * Fix multi_bioservices import skip microarray tests
- Loading branch information
Josh Loecker
authored
Apr 26, 2024
1 parent
7ad61b5
commit ce2c833
Showing
15 changed files
with
387 additions
and
224 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,4 @@ main/microarray.db | |
main/data/config_sheets/* | ||
main/data/GSE*_RAW | ||
main/data/gpl*entrez.csv | ||
main/src/microarray.db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -589,18 +589,20 @@ def parse_args(argv): | |
"https://github.com/HelikarLab/MADRID or email [email protected]", | ||
) | ||
|
||
parser.add_argument(**context_names_arg) | ||
parser.add_argument(**reference_model_filepath_arg) | ||
parser.add_argument(**active_genes_filepath_arg) | ||
parser.add_argument(**objective_function_arg) | ||
parser.add_argument(**boundary_reactions_filepath_arg) | ||
parser.add_argument(**exclude_reactions_filepath_arg) | ||
parser.add_argument(**force_reactions_filepath_arg) | ||
parser.add_argument(**reconstruction_algorithm_arg) | ||
parser.add_argument(**imat_low_threshold_arg) | ||
parser.add_argument(**imat_high_threshold_arg) | ||
parser.add_argument(**reconstruction_solver_arg) | ||
parser.add_argument(**output_filetypes_arg) | ||
# fmt: off | ||
parser.add_argument(context_names_arg["flag"], **{k: v for k, v in context_names_arg.items() if k != "flag"}) | ||
parser.add_argument(reference_model_filepath_arg["flag"], **{k: v for k, v in reference_model_filepath_arg.items() if k != "flag"}) | ||
parser.add_argument(active_genes_filepath_arg["flag"], **{k: v for k, v in active_genes_filepath_arg.items() if k != "flag"}) | ||
parser.add_argument(objective_function_arg["flag"], **{k: v for k, v in objective_function_arg.items() if k != "flag"}) | ||
parser.add_argument(boundary_reactions_filepath_arg["flag"], **{k: v for k, v in boundary_reactions_filepath_arg.items() if k != "flag"}) | ||
parser.add_argument(exclude_reactions_filepath_arg["flag"], **{k: v for k, v in exclude_reactions_filepath_arg.items() if k != "flag"}) | ||
parser.add_argument(force_reactions_filepath_arg["flag"], **{k: v for k, v in force_reactions_filepath_arg.items() if k != "flag"}) | ||
parser.add_argument(reconstruction_algorithm_arg["flag"], **{k: v for k, v in reconstruction_algorithm_arg.items() if k != "flag"}) | ||
parser.add_argument(imat_low_threshold_arg["flag"], **{k: v for k, v in imat_low_threshold_arg.items() if k != "flag"}) | ||
parser.add_argument(imat_high_threshold_arg["flag"], **{k: v for k, v in imat_high_threshold_arg.items() if k != "flag"}) | ||
parser.add_argument(reconstruction_solver_arg["flag"], **{k: v for k, v in reconstruction_solver_arg.items() if k != "flag"}) | ||
parser.add_argument(output_filetypes_arg["flag"], **{k: v for k, v in output_filetypes_arg.items() if k != "flag"}) | ||
# fmt: on | ||
|
||
args = parser.parse_args() | ||
return args | ||
|
Oops, something went wrong.