making 'parseLocation' public static - as simple as the logic is, it's better kept in one place and I need it!

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3537 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
asivache 2010-06-11 18:19:59 +00:00
parent 8c28be5933
commit e6d8faf293
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ public class BedParser {
* @param line the line, as a string
* @return a parsed genome loc
*/
private GenomeLoc parseLocation(String line) {
public static GenomeLoc parseLocation(String line) {
String contig;
int start;
int stop;