|
1 | 1 | /* |
2 | | - * This file is part of the WALT program |
| 2 | + * The head file for mapping single-end reads |
3 | 3 | * |
4 | | - * Copyright (C) 2015 University of Southern California and |
| 4 | + * Copyright (C) 2015 University of Southern California |
5 | 5 | * Andrew D. Smith and Ting Chen |
6 | 6 | * |
7 | | - * Authors: Andrew D. Smith and Ting Chen |
| 7 | + * Authors: Haifeng Chen, Andrew D. Smith and Ting Chen |
8 | 8 | * |
9 | 9 | * This program is free software: you can redistribute it and/or modify |
10 | 10 | * it under the terms of the GNU General Public License as published by |
|
20 | 20 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
21 | 21 | */ |
22 | 22 |
|
23 | | -/* |
24 | | - * singled-end read mapping |
25 | | - */ |
26 | 23 | #ifndef MAPPING_HPP_ |
27 | 24 | #define MAPPING_HPP_ |
28 | 25 |
|
@@ -107,10 +104,10 @@ string ReverseString(const string& str); |
107 | 104 | /* reverse compliment string */ |
108 | 105 | string ReverseComplimentString(const string& str); |
109 | 106 |
|
110 | | -/* reads from _1 file, Cs are transfered to Ts*/ |
| 107 | +/* reads from _1 file, Cs are converted to Ts*/ |
111 | 108 | void C2T(const string& org_read, const uint32_t& read_len, string& read); |
112 | 109 |
|
113 | | -/* reads from _2 file, Gs are transfered to As*/ |
| 110 | +/* reads from _2 file, Gs are converted to As*/ |
114 | 111 | void G2A(const string& org_read, const uint32_t& read_len, string& read); |
115 | 112 |
|
116 | 113 | /* find the region of index where those positions started with the seed */ |
|
0 commit comments