Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Commit d91ce7c

Browse files
committed
Merge pull request #11 from acgtun/master
update copyrights and format
2 parents cfab2ce + 051c400 commit d91ce7c

File tree

13 files changed

+43
-55
lines changed

13 files changed

+43
-55
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2015 University of Southern California
44
# Andrew D. Smith and Ting Chen
55
#
6-
# Authors: Andrew D. Smith, Ting Chen
6+
# Authors: Haifeng Chen, Andrew D. Smith and Ting Chen
77
#
88
# This program is free software: you can redistribute it and/or modify
99
# it under the terms of the GNU General Public License as published by

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ For example, to mapping reads to human genome hg19
7777

7878
walt -i hg19.dbindex -r read_1.fq -o reads_1_mapping.sam
7979

80-
If mapping the reads from the *_2 reads file, the -A option should be set. This means that all Gs in the reads and genome are transfered to As. If -A option is not set, all Cs in the reads and genome are transfered to Ts.
80+
If mapping the reads from the *_2 reads file, the -A option should be set. This means that all Gs in the reads and genome are converted to As. If -A option is not set, all Cs in the reads and genome are converted to Ts.
8181

8282
walt -i hg19.dbindex -r read_2.fq -A -o reads_2_mapping.sam
8383

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2015 University of Southern California
44
# Andrew D. Smith and Ting Chen
55
#
6-
# Authors: Andrew D. Smith, Ting Chen
6+
# Authors: Haifeng Chen, Andrew D. Smith and Ting Chen
77
#
88
# This program is free software: you can redistribute it and/or modify
99
# it under the terms of the GNU General Public License as published by

src/walt/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (C) 2015 University of Southern California
44
# Andrew D. Smith and Ting Chen
55
#
6-
# Authors: Andrew D. Smith, Ting Chen
6+
# Authors: Haifeng Chen, Andrew D. Smith and Ting Chen
77
#
88
# This program is free software: you can redistribute it and/or modify
99
# it under the terms of the GNU General Public License as published by

src/walt/makedb.cpp

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
* This file is part of the WALT program
2+
* This is the main function to build index for reference genome.
33
*
4-
* Copyright (C) 2015 University of Southern California and
4+
* Copyright (C) 2015 University of Southern California
55
* Andrew D. Smith and Ting Chen
66
*
7-
* Authors: Andrew D. Smith and Ting Chen
7+
* Authors: Haifeng Chen, Andrew D. Smith and Ting Chen
88
*
99
* This program is free software: you can redistribute it and/or modify
1010
* it under the terms of the GNU General Public License as published by
@@ -20,10 +20,6 @@
2020
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2121
*/
2222

23-
/*
24-
* This is the main function to build index for reference genome.
25-
*/
26-
2723
#include <set>
2824
#include <string>
2925
#include <vector>

src/walt/mapping.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
/*
2-
* This file is part of the WALT program
2+
* This file contains the functions for mapping single-end reads.
3+
* The detail description of each function please refer to head file.
34
*
4-
* Copyright (C) 2015 University of Southern California and
5+
* Copyright (C) 2015 University of Southern California
56
* Andrew D. Smith and Ting Chen
67
*
7-
* Authors: Andrew D. Smith and Ting Chen
8+
* Authors: Haifeng Chen, Andrew D. Smith and Ting Chen
89
*
910
* This program is free software: you can redistribute it and/or modify
1011
* it under the terms of the GNU General Public License as published by

src/walt/mapping.hpp

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
* This file is part of the WALT program
2+
* The head file for mapping single-end reads
33
*
4-
* Copyright (C) 2015 University of Southern California and
4+
* Copyright (C) 2015 University of Southern California
55
* Andrew D. Smith and Ting Chen
66
*
7-
* Authors: Andrew D. Smith and Ting Chen
7+
* Authors: Haifeng Chen, Andrew D. Smith and Ting Chen
88
*
99
* This program is free software: you can redistribute it and/or modify
1010
* it under the terms of the GNU General Public License as published by
@@ -20,9 +20,6 @@
2020
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2121
*/
2222

23-
/*
24-
* singled-end read mapping
25-
*/
2623
#ifndef MAPPING_HPP_
2724
#define MAPPING_HPP_
2825

@@ -107,10 +104,10 @@ string ReverseString(const string& str);
107104
/* reverse compliment string */
108105
string ReverseComplimentString(const string& str);
109106

110-
/* reads from _1 file, Cs are transfered to Ts*/
107+
/* reads from _1 file, Cs are converted to Ts*/
111108
void C2T(const string& org_read, const uint32_t& read_len, string& read);
112109

113-
/* reads from _2 file, Gs are transfered to As*/
110+
/* reads from _2 file, Gs are converted to As*/
114111
void G2A(const string& org_read, const uint32_t& read_len, string& read);
115112

116113
/* find the region of index where those positions started with the seed */

src/walt/paired.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
/*
2-
* This file is part of the WALT program
2+
* This file contains the functions for mapping paired-end reads.
3+
* The detail description of each function please refer to head file.
34
*
4-
* Copyright (C) 2015 University of Southern California and
5+
* Copyright (C) 2015 University of Southern California
56
* Andrew D. Smith and Ting Chen
67
*
7-
* Authors: Andrew D. Smith and Ting Chen
8+
* Authors: Haifeng Chen, Andrew D. Smith and Ting Chen
89
*
910
* This program is free software: you can redistribute it and/or modify
1011
* it under the terms of the GNU General Public License as published by

src/walt/paired.hpp

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
* This file is part of the WALT program
2+
* The head file for mapping paired-end reads
33
*
4-
* Copyright (C) 2015 University of Southern California and
4+
* Copyright (C) 2015 University of Southern California
55
* Andrew D. Smith and Ting Chen
66
*
7-
* Authors: Andrew D. Smith and Ting Chen
7+
* Authors: Haifeng Chen, Andrew D. Smith and Ting Chen
88
*
99
* This program is free software: you can redistribute it and/or modify
1010
* it under the terms of the GNU General Public License as published by
@@ -20,10 +20,6 @@
2020
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2121
*/
2222

23-
/*
24-
* paired-end read mapping
25-
*/
26-
2723
#ifndef PAIRED_HPP_
2824
#define PAIRED_HPP_
2925

src/walt/reference.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
/*
2-
* This file is part of the WALT program
2+
* The file contains the functions for building index.
3+
* The detail description of each function please refer to head file.
34
*
4-
* Copyright (C) 2015 University of Southern California and
5+
* Copyright (C) 2015 University of Southern California
56
* Andrew D. Smith and Ting Chen
67
*
7-
* Authors: Andrew D. Smith and Ting Chen
8+
* Authors: Haifeng Chen, Andrew D. Smith and Ting Chen
89
*
910
* This program is free software: you can redistribute it and/or modify
1011
* it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)