Beispiel #1
0
void printImageUsage(QTextStream * out, bool all)
{
    *out << endl;
    *out << "Usage:    Bandage image <graphfile> <outputfile> [options]" << endl;
    *out << endl;
    *out << "Options:  --height <int>      image height (default: 1000)" << endl;
    *out << "          --width <int>       image width (default: not set)" << endl;
    *out << "                              If only height or width is set, the other will be" << endl;
    *out << "                              determined automatically. If both are set, the" << endl;
    *out << "                              image will be exactly that size." << endl;
    *out << endl;
    printCommonHelp(out);
    if (all)
        printSettingsUsage(out);
    *out << "Online Bandage help: https://github.com/rrwick/Bandage/wiki" << endl;
    *out << endl;
}
Beispiel #2
0
void printUsage(QTextStream * out, bool all)
{
    *out << endl;
    *out << "Usage:   Bandage <command> [options]" << endl;
    *out << endl;
    *out << "Command: <blank>      launch Bandage GUI" << endl;
    *out << "         load         launch Bandage GUI and load a graph file" << endl;
    *out << "         image        generate an image file of a graph" << endl;
//    *out << "         contiguous   extract all sequences contiguous with a target sequence" << endl;
    *out << endl;
    *out << "Options: --help       view this help message" << endl;
    *out << "         --helpall    view all command line settings" << endl;
    *out << "         --version    view Bandage version number" << endl;
    *out << endl;
    if (all)
        printSettingsUsage(out);
}