Skip to content

Commit

Permalink
step6 update
Browse files Browse the repository at this point in the history
  • Loading branch information
tf2 committed Oct 26, 2023
1 parent a9598ce commit 7ebfa4e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/cnest_dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def step5 (index_tab, gender_file, rbin_dir, cor_dir, bin_dir, batch_size, targe
logger.info('Step5 done')


def step6(rbin_dir, cor_dir, cnv_dir, sample_name, index_tab, cov_file, gender_file, batch_size, target_size, start_pos, cov_cut, cor_cut, skip_em, debug):
def step6(rbin_dir, cor_dir, cnv_dir, index_tab, cov_file, gender_file, batch_size, target_size, start_pos, cov_cut, cor_cut, skip_em, debug):
"""HMM Call
# Original Step7
Rscript /resources/run.R run_hmm_rbin ${project_root} ${sample_index} \
Expand Down Expand Up @@ -290,3 +290,6 @@ def ix2id(sample_index, gender_file):
elif args.step == 'step5':
# step 5
step5(args.index_tab, args.gender_file, args.rbin_dir, args.cor_dir, args.bin_dir, args.batch_size, args.target_size, args.start_pos, args.cor_cut, args.skip_em, args.debug)
elif args.step == 'step6':
# step 6
step6(args.rbin_dir, args.cor_dir, args.cnv_dir, args.index_tab, args.cov_file, args.gender_file, args.batch_size, args.target_size, args.start_pos, args.cov_cut, args.cor_cut, args.skip_em, args.debug)

0 comments on commit 7ebfa4e

Please sign in to comment.