Skip to content

Commit

Permalink
updated load genotypes method
Browse files Browse the repository at this point in the history
  • Loading branch information
kunalgosar committed Oct 25, 2017
1 parent 4c97740 commit 21df571
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gnocchi-python/bdgenomics/gnocchi/gnocchiSession.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def filterVariants(self, genotypesDataset, geno, maf):
dataset = self.__jgs.filterVariants(genotypesDataset.get(), geno, maf)
return CalledVariantDataset(dataset, self._sc)

def loadGenotypes(self, genotypesPath):
dataset = self.__jgs.loadGenotypes(genotypesPath)
def loadGenotypesAsText(self, genotypesPath):
dataset = self.__jgs.loadGenotypesAsText(genotypesPath)
return CalledVariantDataset(dataset, self._sc)

def loadPhenotypes(self, phenotypesPath, primaryID, phenoName, delimited,
Expand Down

0 comments on commit 21df571

Please sign in to comment.