Skip to content

Commit fdf6d26

Browse files
committed
adding min qual
1 parent 73244fc commit fdf6d26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gmm.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ struct variant {
5050

5151
};
5252
void split(const std::string &s, char delim, std::vector<std::string> &elems);
53-
std::vector<variant> gmm_model(std::string prefix, std::string output_prefix);
54-
void parse_internal_variants(std::string filename, std::vector<variant> &base_variants, uint32_t depth_cutoff, float lower_bound, float upper_bound, std::vector<uint32_t> deletion_positions, uint32_t round_val, double quality_threshold);
53+
std::vector<variant> gmm_model(std::string prefix, std::string output_prefix, uint32_t min_depth, uint8_t min_qual);
54+
void parse_internal_variants(std::string filename, std::vector<variant> &base_variants, uint32_t depth_cutoff, float lower_bound, float upper_bound, std::vector<uint32_t> deletion_positions, uint32_t round_val, uint8_t quality_threshold);
5555
std::vector<uint32_t> find_deletion_positions(std::string filename, uint32_t depth_cutoff, float lower_bound, float upper_bound, uint32_t round_val);
5656
std::vector<uint32_t> find_low_quality_positions(std::string filename, uint32_t depth_cutoff, float lower_bound, float upper_bound, float quality_threshold, uint32_t round_val);
5757
std::vector<std::vector<double>> solve_possible_solutions(std::vector<float> tmp_means, double error);

0 commit comments

Comments
 (0)