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],
def rtc_runner(rtc): return run_main_gather_alignmentset(rtc.task.input_files[0], rtc.task.output_files[0], rtc.task.chunk_key)
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,
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],
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,