Ejemplo n.º 1
0
def add_ice_quiver_merge_arguments(parser):
    """Add IceQuiverMerge arguments."""
    parser = add_cluster_root_dir_as_positional_argument(parser)

    helpstr = "Number of workload chunks."
    parser.add_argument("N", help=helpstr, type=int)
    return parser
Ejemplo n.º 2
0
def add_ice_partial_merge_arguments(parser):
    """Add IcePartialmerge arguments."""
    parser = add_cluster_root_dir_as_positional_argument(parser)

    helpstr = "Non-full-length reads have been splitted into N chunks."
    parser.add_argument("N", help=helpstr, type=int)
    return parser
Ejemplo n.º 3
0
def add_ice_quiver_merge_arguments(parser):
    """Add IceQuiverMerge arguments."""
    parser = add_cluster_root_dir_as_positional_argument(parser)

    helpstr = "Number of workload chunks."
    parser.add_argument("N", help=helpstr, type=int)
    return parser
Ejemplo n.º 4
0
def add_ice_partial_merge_arguments(parser):
    """Add IcePartialmerge arguments."""
    parser = add_cluster_root_dir_as_positional_argument(parser)

    helpstr = "Non-full-length reads have been splitted into N chunks."
    parser.add_argument("N", help=helpstr, type=int)
    return parser
Ejemplo n.º 5
0
def add_ice_polish_arguments(parser):
    """Set up argument parser."""
    parser = add_cluster_root_dir_as_positional_argument(parser)
    parser = add_nfl_fa_argument(parser, positional=True)
    parser = add_fofn_arguments(parser, ccs_fofn=True, bas_fofn=True, fasta_fofn=True)
    parser = add_ice_post_quiver_hq_lq_arguments(parser)
    parser = add_sge_arguments(parser, quiver_nproc=True, blasr_nproc=True, sge_env_name=True, sge_queue=True)
    return parser
Ejemplo n.º 6
0
def add_ice_partial_split_arguments(parser):
    """Add arguments for ice_partial split."""
    parser = add_cluster_root_dir_as_positional_argument(parser)

    parser = add_nfl_fa_argument(parser, positional=True)

    helpstr = "Split non-full-length reads into N chunks, N < 100."
    parser.add_argument("N", help=helpstr, type=int)
Ejemplo n.º 7
0
def add_ice_partial_split_arguments(parser):
    """Add arguments for ice_partial split."""
    parser = add_cluster_root_dir_as_positional_argument(parser)

    parser = add_nfl_fa_argument(parser, positional=True)

    helpstr = "Split non-full-length reads into N chunks, N < 100."
    parser.add_argument("N", help=helpstr, type=int)
Ejemplo n.º 8
0
def add_ice_quiver_all_arguments(parser):
    """Add arguments for IceQuiverAll, including arguments for IceQuiver and
    IceQuiverPostprocess."""
    parser = add_cluster_root_dir_as_positional_argument(parser)
    parser = add_fofn_arguments(parser, bas_fofn=True, fasta_fofn=True)
    parser = add_cluster_summary_report_arguments(parser)
    parser = add_ice_post_quiver_hq_lq_arguments(parser)
    parser = add_sge_arguments(parser, quiver_nproc=True, blasr_nproc=True)
    return parser
Ejemplo n.º 9
0
def add_ice_quiver_all_arguments(parser):
    """Add arguments for IceQuiverAll, including arguments for IceQuiver and
    IceQuiverPostprocess."""
    parser = add_cluster_root_dir_as_positional_argument(parser)
    parser = add_fofn_arguments(parser, bas_fofn=True, fasta_fofn=True)
    parser = add_cluster_summary_report_arguments(parser)
    parser = add_ice_post_quiver_hq_lq_arguments(parser)
    parser = add_sge_arguments(parser, quiver_nproc=True, blasr_nproc=True)
    return parser
Ejemplo n.º 10
0
def add_ice_quiver_i_arguments(parser):
    """Add IceQuiverI (ice_quiver.py i) arguments."""
    parser = add_cluster_root_dir_as_positional_argument(parser)

    helpstr = "Call quiver to polish clusters in the (i / N)-th chunk."
    parser.add_argument("i", help=helpstr, type=int)

    helpstr = "Divide clusters into N chunks."
    parser.add_argument("N", help=helpstr, type=int)

    parser = add_fofn_arguments(parser, bas_fofn=True, fasta_fofn=True)
    parser = add_sge_arguments(parser, quiver_nproc=True, blasr_nproc=True)
    return parser
Ejemplo n.º 11
0
def add_ice_partial_i_arguments(parser):
    """Add IcePartialI arguments."""
    parser = add_cluster_root_dir_as_positional_argument(parser)

    helpstr = "To process the i-th chunk of non-full-length reads."
    parser.add_argument("i", help=helpstr, type=int)

    parser.add_argument("--blasr_nproc",
                        type=int,
                        dest="blasr_nproc",
                        action="store",
                        default=12,
                        help="Number of cores for each BLASR job.")

    parser = add_fofn_arguments(parser, ccs_fofn=True)
    return parser
Ejemplo n.º 12
0
def add_ice_partial_i_arguments(parser):
    """Add IcePartialI arguments."""
    parser = add_cluster_root_dir_as_positional_argument(parser)

    helpstr = "To process the i-th chunk of non-full-length reads."
    parser.add_argument("i", help=helpstr, type=int)

    parser.add_argument("--blasr_nproc",
                        type=int,
                        dest="blasr_nproc",
                        action="store",
                        default=12,
                        help="Number of cores for each BLASR job.")

    parser = add_fofn_arguments(parser, ccs_fofn=True)
    return parser
Ejemplo n.º 13
0
def add_ice_quiver_postprocess_arguments(parser):
    """Add arugments for IceQuiverPostprocess (ice_quiver.py postprocess)."""
    parser = add_cluster_root_dir_as_positional_argument(parser)
    parser = add_ice_post_quiver_hq_lq_arguments(parser)
    parser = add_cluster_summary_report_arguments(parser)

    parser.add_argument("--use_sge",
                        default=False,
                        dest="use_sge",
                        action="store_true",
                        help="quiver jobs have been submitted to sge."
                             "Check qstat")
    parser.add_argument("--quit_if_not_done",
                        default=False,
                        dest="quit_if_not_done",
                        action="store_true",
                        help="Quit if quiver jobs haven't been completed.")
    return parser
Ejemplo n.º 14
0
def add_ice_quiver_postprocess_arguments(parser):
    """Add arugments for IceQuiverPostprocess (ice_quiver.py postprocess)."""
    parser = add_cluster_root_dir_as_positional_argument(parser)
    parser = add_ice_post_quiver_hq_lq_arguments(parser)
    parser = add_cluster_summary_report_arguments(parser)

    parser.add_argument("--use_sge",
                        default=False,
                        dest="use_sge",
                        action="store_true",
                        help="quiver jobs have been submitted to sge."
                        "Check qstat")
    parser.add_argument("--quit_if_not_done",
                        default=False,
                        dest="quit_if_not_done",
                        action="store_true",
                        help="Quit if quiver jobs haven't been completed.")
    return parser
Ejemplo n.º 15
0
def add_ice_quiver_arguments(parser):
    """Add arguments for IceQuiver, not including IceQuiverPostprocess."""
    parser = add_cluster_root_dir_as_positional_argument(parser)
    parser = add_fofn_arguments(parser, bas_fofn=True, fasta_fofn=True)
    parser = add_sge_arguments(parser, quiver_nproc=True, blasr_nproc=True)
    return parser
Ejemplo n.º 16
0
def add_ice_quiver_arguments(parser):
    """Add arguments for IceQuiver, not including IceQuiverPostprocess."""
    parser = add_cluster_root_dir_as_positional_argument(parser)
    parser = add_fofn_arguments(parser, bas_fofn=True, fasta_fofn=True)
    parser = add_sge_arguments(parser, quiver_nproc=True, blasr_nproc=True)
    return parser