Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not all command line options are described in the usage text #3

Open
lckarssen opened this issue Mar 16, 2017 · 0 comments
Open

Not all command line options are described in the usage text #3

lckarssen opened this issue Mar 16, 2017 · 0 comments

Comments

@lckarssen
Copy link
Member

Not all command line options of text2fvf are explained in the usage message. These are the current option lists (see text2fvf_main.cpp):

    const char * const short_options = "i:o:c:s:r:2:3:4:t:RT:d:n:";
    const struct option long_options [] =
        {
            {"infile",    required_argument, NULL, 'i'},
            {"outfile",   required_argument, NULL, 'o'},
            {"skipcols",  required_argument, NULL, 'c'},
            {"skiprows",  required_argument, NULL, 's'},
            {"rownames",  required_argument, NULL, 'r'},
            {"cnrow",     required_argument, NULL, '2'},
            {"rnfile",    required_argument, NULL, '3'},
            {"cnfile",    required_argument, NULL, '4'},
            {"transpose", no_argument,       NULL, 't'},
            {"Rmatrix",   no_argument,       NULL, 'R'},
            {"outType",   required_argument, NULL, 'T'},
            {"datatype",  required_argument, NULL, 'd'},
            {"nanString", required_argument, NULL, 'n'},
            { NULL     ,  no_argument,       NULL,  0 }
        };

At at first glance, the rnfile, cnfile and nanString options are not documented in the usage string.

lckarssen added a commit that referenced this issue Mar 16, 2017
Not all short options for which long options were shown were mentioned
in the usage message. Also fix some grammar issues in the usage message.

Note: not all short options mentions in the options code have been
documented in the usage string yet. See Issue #3.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant