Skip to content
Snippets Groups Projects
Commit aaf5b546 authored by tjc's avatar tjc
Browse files

make complementRange() private

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@3779 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 0c052836
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/sequence/Bases.java,v 1.15 2005-10-18 08:42:55 tjc Exp $ * $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/sequence/Bases.java,v 1.16 2005-10-19 08:27:00 tjc Exp $
*/ */
package uk.ac.sanger.artemis.sequence; package uk.ac.sanger.artemis.sequence;
...@@ -45,7 +45,7 @@ import java.util.Iterator; ...@@ -45,7 +45,7 @@ import java.util.Iterator;
* non-base letter returns '@'. * non-base letter returns '@'.
* *
* @author Kim Rutherford * @author Kim Rutherford
* @version $Id: Bases.java,v 1.15 2005-10-18 08:42:55 tjc Exp $ */ * @version $Id: Bases.java,v 1.16 2005-10-19 08:27:00 tjc Exp $ */
public class Bases public class Bases
{ {
...@@ -201,7 +201,7 @@ public class Bases ...@@ -201,7 +201,7 @@ public class Bases
* Return the complement of the given Range. eg. if the sequence length is * Return the complement of the given Range. eg. if the sequence length is
* 100 and the Range is 1..10 then the return value will be 90..100. * 100 and the Range is 1..10 then the return value will be 90..100.
**/ **/
public Range complementRange (final Range range) { private Range complementRange (final Range range) {
final int real_start = getComplementPosition (range.getEnd ()); final int real_start = getComplementPosition (range.getEnd ());
final int real_end = getComplementPosition (range.getStart ()); final int real_end = getComplementPosition (range.getStart ());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment