A library for working with phylogenetic and population genetic data.
v0.32.0
simple_pileup_common.hpp
Go to the documentation of this file.
1 #ifndef GENESIS_POPULATION_FORMAT_SIMPLE_PILEUP_COMMON_H_
2 #define GENESIS_POPULATION_FORMAT_SIMPLE_PILEUP_COMMON_H_
3 
4 /*
5  Genesis - A toolkit for working with phylogenetic data.
6  Copyright (C) 2014-2024 Lucas Czech
7 
8  This program is free software: you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation, either version 3 of the License, or
11  (at your option) any later version.
12 
13  This program is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  GNU General Public License for more details.
17 
18  You should have received a copy of the GNU General Public License
19  along with this program. If not, see <http://www.gnu.org/licenses/>.
20 
21  Contact:
22  Lucas Czech <lczech@carnegiescience.edu>
23  Department of Plant Biology, Carnegie Institution For Science
24  260 Panama Street, Stanford, CA 94305, USA
25 */
26 
36 
37 #include <string>
38 #include <vector>
39 
40 namespace genesis {
41 namespace population {
42 
43 // =================================================================================================
44 // Simple (m)pileup Reader Helper Functions
45 // =================================================================================================
46 
47 SampleCounts convert_to_sample_counts(
48  SimplePileupReader::Sample const& sample,
49  unsigned char min_phred_score = 0
50 );
51 
52 Variant convert_to_variant(
53  SimplePileupReader::Record const& record,
54  unsigned char min_phred_score = 0
55 );
56 
69  std::shared_ptr< utils::BaseInputSource > source,
70  size_t max_lines = 0
71 );
72 
73 } // namespace population
74 } // namespace genesis
75 
76 #endif // include guard
genesis::population::convert_to_variant
Variant convert_to_variant(SimplePileupReader::Record const &record, unsigned char min_phred_score)
Definition: simple_pileup_common.cpp:146
genesis::population::convert_to_sample_counts
SampleCounts convert_to_sample_counts(SimplePileupReader::Sample const &sample, unsigned char min_phred_score)
Definition: simple_pileup_common.cpp:46
genesis::sequence::QualityEncoding
QualityEncoding
List of quality encodings for which we support decoding.
Definition: quality.hpp:72
simple_pileup_reader.hpp
genesis
Container namespace for all symbols of genesis in order to keep them separate when used as a library.
Definition: placement/formats/edge_color.cpp:42
genesis::population::guess_pileup_quality_encoding
genesis::sequence::QualityEncoding guess_pileup_quality_encoding(std::shared_ptr< utils::BaseInputSource > source, size_t max_lines)
Guess the quality score encoding for an (m)pileup input, based on counts of how often each char appea...
Definition: simple_pileup_common.cpp:178
quality.hpp