Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Taepper committed May 24, 2024
1 parent e372318 commit b1d7cb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/silo/preprocessing/sequence_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ void SequenceInfo::validateNdjsonFile(
std::vector<std::string> nuc_sequence_names;
std::transform(reference_genomes.raw_nucleotide_sequences.begin(), reference_genomes.raw_nucleotide_sequences.end(),
std::back_inserter(nuc_sequence_names),
[](auto& p){return p.first;});
[](auto& pair){return pair.first;});
std::vector<std::string> aa_sequence_names;
std::transform(reference_genomes.raw_aa_sequences.begin(), reference_genomes.raw_aa_sequences.end(),
std::back_inserter(aa_sequence_names),
[](auto& p){return p.first;});
[](auto& pair){return pair.first;});
auto result = connection.Query(fmt::format(
"SELECT json_keys(alignedNucleotideSequences), json_keys(alignedAminoAcidSequences), "
"json_keys(unalignedNucleotideSequences), json_keys(nucleotideInsertions), "
Expand Down

0 comments on commit b1d7cb4

Please sign in to comment.