Skip to content

Command Line Arguments are mispositioned #47

@aziz-zafar

Description

@aziz-zafar

Hi,

I am using the CLI for your tool. Initially, I was using the command exactly how it has been outlined in the Github. However, upon looking into your cli.py, you can see that

parser = argparse.ArgumentParser(
        prog="gemcat",
        description="GEMCAT tool for metabolomics predictions",
    )

    parser.add_argument(
        "modelfile",
        help=f"Path to model file to use (XML/SBML, JSON, or MAT format), or one of: {model_manager.get_managed_models_str()}",
    )
    parser.add_argument(
        "expressionfile", help="Path to file containing the condition expression data"
    )

    parser.add_argument(
        "-e",
        "--expressioncolumn",
        help="Name of the column containing the condition expression data",
    )

The model file is in fact before the expression file (not the opposite). Could you kindly correct the docs or the code to ensure congruency?

Many thanks,
Aziz

Metadata

Metadata

Assignees

Labels

documentationImprovements or additions to documentation

Type

No fields configured for Bug.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions