File: Sequence.hpp

package info (click to toggle)
consensuscore 1.1.1%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,404 kB
  • sloc: cpp: 38,940; python: 2,083; ansic: 542; sh: 184; makefile: 82; cs: 10
file content (12 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
// Author: David Alexander

#pragma once

#include <string>

namespace ConsensusCore {
char ComplementaryBase(char base);
std::string Complement(const std::string& input);
std::string Reverse(const std::string& input);
std::string ReverseComplement(const std::string& input);
}