Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

checkpoint for scaffolding #521

Merged
merged 1 commit into from
Sep 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CommandLines.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@ void init_opt(hifiasm_opt_t* asm_opt)
asm_opt->ul_pst_join = 1;
asm_opt->trio_cov_het_ovlp = -1;
asm_opt->ul_min_base = 0;
asm_opt->self_scaf = 0;
}

void destory_enzyme(enzyme* f)
Expand Down
3 changes: 2 additions & 1 deletion CommandLines.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <pthread.h>
#include <stdint.h>

#define HA_VERSION "0.19.6-r595"
#define HA_VERSION "0.19.6-r597"

#define VERBOSE 0

Expand Down Expand Up @@ -147,6 +147,7 @@ typedef struct {
uint8_t dbg_ovec_cal;
uint8_t hifi_pst_join, ul_pst_join;
uint32_t ul_min_base;
uint8_t self_scaf;
} hifiasm_opt_t;

extern hifiasm_opt_t asm_opt;
Expand Down
Loading
Loading