Skip to content

Commit 1937027

Browse files
committed
tiny javadoc improvements
1 parent 2b903c9 commit 1937027

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

biojava-genome/src/main/java/org/biojava/nbio/genome/util/ChromosomeMappingTools.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
package org.biojava.nbio.genome.util;
22

3-
43
import com.google.common.collect.Range;
54

6-
import org.biojava.nbio.core.sequence.ProteinSequence;
75
import org.biojava.nbio.genome.parsers.genename.ChromPos;
86
import org.biojava.nbio.genome.parsers.genename.GeneChromosomePosition;
97

@@ -13,8 +11,11 @@
1311
import java.util.List;
1412

1513
/**
16-
* A class that take care of the painful mapping
14+
* A class that can map chromosomal positions to mRNA (coding sequence) positions.
15+
*
16+
* @author Andreas Prlic
1717
*/
18+
1819
public class ChromosomeMappingTools {
1920

2021
public static final boolean debug = false;
@@ -1025,7 +1026,7 @@ private static List<Range> getCDSExonRangesForward(GeneChromosomePosition chromP
10251026
//
10261027

10271028
/**
1028-
* I have a genomic coordinate, where is it in the Gene?
1029+
* I have a genomic coordinate, where is it on the mRNA
10291030
*
10301031
* @param coordinate
10311032
* @param chromosomePosition
@@ -1237,7 +1238,7 @@ public static int getCDSPosReverse(int chromPos, List<Integer> exonStarts, List<
12371238
}
12381239

12391240
/**
1240-
* Get the chromosome position mapped onto the mrna CDS transcript position (needs to be divided by 3 to get protein coordinate)
1241+
* Get the chromosome position mapped onto the mRNA CDS transcript position (needs to be divided by 3 to get protein coordinate)
12411242
*
12421243
* @param exonStarts
12431244
* @param exonEnds

0 commit comments

Comments
 (0)