MCPcopy Create free account
hub / github.com/BoevaLab/FREEC / complement

Function complement

src/myFunc.cpp:1849–1863  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1847}
1848
1849char complement(char n) {
1850 switch(n) {
1851 case 'A': return 'T';
1852 case 'T': return 'A';
1853 case 'C': return 'G';
1854 case 'G': return 'C';
1855 case 'a': return 't';
1856 case 't': return 'a';
1857 case 'c': return 'g';
1858 case 'g': return 'c';
1859 case 'N': return 'N';
1860
1861 }
1862 return 'N';
1863}
1864
1865vector<int> merge_no_dups(const vector<int>& v1, const vector<int>& v2);
1866

Callers 1

SNPpositionMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected