def rtc_runner(rtc):
    return run_main_gather_alignmentset(
        chunk_input_json=rtc.task.input_files[0],
        output_file=rtc.task.output_files[0],
        chunk_key=rtc.task.chunk_key,
        consolidate=False,
    )  # rtc.task.options[Constants.CONSOLIDATE_ID],
Example #2
0
def rtc_runner(rtc):
    return run_main_gather_alignmentset(rtc.task.input_files[0],
                                        rtc.task.output_files[0],
                                        rtc.task.chunk_key)
Example #3
0
def args_runner(args):
    return run_main_gather_alignmentset(args.cjson_in,
                                        args.ds_out,
                                        args.chunk_key)
def args_runner(args):
    return run_main_gather_alignmentset(
        chunk_input_json=args.cjson_in, output_file=args.ds_out, chunk_key=args.chunk_key, consolidate=False
    )  # args.consolidate,
Example #5
0
def rtc_runner(rtc):
    return run_main_gather_alignmentset(
        chunk_input_json=rtc.task.input_files[0],
        output_file=rtc.task.output_files[0],
        chunk_key=rtc.task.chunk_key,
        consolidate=False)  #rtc.task.options[Constants.CONSOLIDATE_ID],
Example #6
0
def args_runner(args):
    return run_main_gather_alignmentset(chunk_input_json=args.cjson_in,
                                        output_file=args.ds_out,
                                        chunk_key=args.chunk_key,
                                        consolidate=False)  #args.consolidate,