Skip to content

Commit

Permalink
Support for smallcaps
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiandeorowicz committed Jun 28, 2024
1 parent 06901a2 commit fd594ba
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions src/defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
//
// Copyright(C) 2024-2024, S.Deorowicz, A.Gudys
//
// Version: 1.0.0
// Date : 2024-06-26
// Version: 1.0.1
// Date : 2024-06-28
// *******************************************************************************************

#pragma once
Expand All @@ -15,8 +15,8 @@
#include <string>
#include "params.h"

const std::string LZ_ANI_VER = "lz-ani 1.0";
const std::string LZ_ANI_DATE = "2024-06-26";
const std::string LZ_ANI_VER = "lz-ani 1.0.1";
const std::string LZ_ANI_DATE = "2024-06-28";
const std::string LZ_ANI_AUTHORS = "Sebastian Deorowicz, Adam Gudys";
const std::string LZ_ANI_INFO = LZ_ANI_VER + " (" + LZ_ANI_DATE + ") by " + LZ_ANI_AUTHORS;

Expand Down
12 changes: 6 additions & 6 deletions src/seq_reservoir.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
//
// Copyright(C) 2024-2024, S.Deorowicz, A.Gudys
//
// Version: 1.0.0
// Date : 2024-06-26
// Version: 1.0.1
// Date : 2024-06-28
// *******************************************************************************************

#pragma once
Expand Down Expand Up @@ -127,10 +127,10 @@ class CSeqReservoir
dna_code{}
{
fill(dna_code.begin(), dna_code.end(), code_N_seq);
dna_code['A'] = code_A;
dna_code['C'] = code_C;
dna_code['G'] = code_G;
dna_code['T'] = code_T;
dna_code['A'] = dna_code['a'] = code_A;
dna_code['C'] = dna_code['c'] = code_C;
dna_code['G'] = dna_code['g'] = code_G;
dna_code['T'] = dna_code['t'] = code_T;
}

bool load_fasta(const vector<string>& fasta_files, uint32_t sep_len, uint32_t verbosity_level);
Expand Down

0 comments on commit fd594ba

Please sign in to comment.