Skip to content

Commit

Permalink
chore: Cut out deadcode
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Dec 7, 2023
1 parent b8f8016 commit ddab000
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 15 deletions.
2 changes: 0 additions & 2 deletions src/include/align/Aligner.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,6 @@ class Aligner {
const map::Mapper mapper_;
const SimilarityScores similarity_;
const ScoreType gapInit_;
// const ScoreType gapExtend_;
// const ScoreType unclipScore_;
const ScoreType alnMinScore_;
const int aln_cfg_mapq_min_len_;
const int aln_cfg_unpaired_pen_;
Expand Down
1 change: 0 additions & 1 deletion src/include/map/ChainBuilder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ class ChainBuilder {
size_t seedChainCount_;
double chainFilterRatio_ = 2.0;
double chainFilterConstant_ = 0.0;
// int numRandomSampleHits_ = 0;
};

} // namespace map
Expand Down
2 changes: 0 additions & 2 deletions src/lib/align/Aligner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ Aligner::Aligner(
mapper_(&hashtable),
similarity_(similarity),
gapInit_(gapInit),
// gapExtend_(gapExtend),
// unclipScore_(unclipScore),
alnMinScore_(alnMinScore),
aln_cfg_mapq_min_len_(aln_cfg_mapq_min_len),
aln_cfg_unpaired_pen_(aln_cfg_unpaired_pen),
Expand Down
10 changes: 0 additions & 10 deletions stubs/dragen/src/host/infra/linux/infra_linux_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,6 @@ namespace infra {
static std::string g_kernelVersionStr;
static int g_kernelVersion;

// static constexpr int MKVER(const int major, const int minor, const int patch)
// {
// return major * 10000 + minor * 100 + patch;
// }

// static constexpr int MKVER(const int major, const int minor)
// {
// return major * 10000 + minor * 100;
// }

//------------------------------------------------------------------------alain
int GetDmiValue(const std::string& label, std::string& value)
{
Expand Down

0 comments on commit ddab000

Please sign in to comment.