Skip to content

Commit

Permalink
Merge branch 'release-5.0.x' into release-5.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
imedina committed Aug 2, 2022
2 parents a9ca8bc + d706f5b commit f867422
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ public class GeneWSServer extends GenericRestWSServer {
private TranscriptManager transcriptManager;
private VariantManager variantManager;
private ProteinManager proteinManager;
private TfbsManager tfbsManager;

public GeneWSServer(@PathParam("apiVersion") @ApiParam(name = "apiVersion", value = VERSION_DESCRIPTION,
defaultValue = DEFAULT_VERSION) String apiVersion,
Expand All @@ -82,10 +81,9 @@ public GeneWSServer(@PathParam("apiVersion") @ApiParam(name = "apiVersion", valu
}

geneManager = cellBaseManagerFactory.getGeneManager(species, assembly);
// transcriptManager = cellBaseManagerFactory.getTranscriptManager(species, assembly);
// variantManager = cellBaseManagerFactory.getVariantManager(species, assembly);
// proteinManager = cellBaseManagerFactory.getProteinManager(species, assembly);
// tfbsManager = cellBaseManagerFactory.getTFManager(species, assembly);
transcriptManager = cellBaseManagerFactory.getTranscriptManager(species, assembly);
variantManager = cellBaseManagerFactory.getVariantManager(species, assembly);
proteinManager = cellBaseManagerFactory.getProteinManager(species, assembly);
}

@GET
Expand Down

0 comments on commit f867422

Please sign in to comment.