Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Djokovic0311 committed Aug 11, 2023
1 parent ddcf44e commit 3c91d6c
Show file tree
Hide file tree
Showing 3 changed files with 222 additions and 212 deletions.
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
package org.cbioportal.service;

import org.cbioportal.model.EnrichmentType;
import org.cbioportal.model.GenericAssayBinaryEnrichment;
import org.cbioportal.model.GenericAssayCategoricalEnrichment;
import org.cbioportal.model.MolecularProfileCaseIdentifier;
import org.cbioportal.service.exception.MolecularProfileNotFoundException;

import java.util.List;
import java.util.Map;

public interface GenericAssayEnrichmentService {
List<GenericAssayBinaryEnrichment> getGenericAssayBinaryEnrichments(
String molecularProfileId,
Map<String, List<MolecularProfileCaseIdentifier>> molecularProfileCaseSets,
EnrichmentType enrichmentType)
throws MolecularProfileNotFoundException;

List<GenericAssayCategoricalEnrichment> getGenericAssayCategoricalEnrichments(String molecularProfileId,
Map<String, List<MolecularProfileCaseIdentifier>> molecularProfileCaseSets,
EnrichmentType enrichmentType)
throws MolecularProfileNotFoundException;
}
//package org.cbioportal.service;
//
//import org.cbioportal.model.EnrichmentType;
//import org.cbioportal.model.GenericAssayBinaryEnrichment;
//import org.cbioportal.model.GenericAssayCategoricalEnrichment;
//import org.cbioportal.model.MolecularProfileCaseIdentifier;
//import org.cbioportal.service.exception.MolecularProfileNotFoundException;
//
//import java.util.List;
//import java.util.Map;
//
//public interface GenericAssayEnrichmentService {
// List<GenericAssayBinaryEnrichment> getGenericAssayBinaryEnrichments(
// String molecularProfileId,
// Map<String, List<MolecularProfileCaseIdentifier>> molecularProfileCaseSets,
// EnrichmentType enrichmentType)
// throws MolecularProfileNotFoundException;
//
// List<GenericAssayCategoricalEnrichment> getGenericAssayCategoricalEnrichments(String molecularProfileId,
// Map<String, List<MolecularProfileCaseIdentifier>> molecularProfileCaseSets,
// EnrichmentType enrichmentType)
// throws MolecularProfileNotFoundException;
//}
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,19 @@
import java.util.stream.Collectors;

import org.apache.commons.lang3.BooleanUtils;
import org.cbioportal.model.*;
import org.cbioportal.model.MolecularProfile.MolecularAlterationType;
import org.cbioportal.model.meta.GenericAssayMeta;
import org.cbioportal.model.EnrichmentType;
import org.cbioportal.model.GenericAssayBinaryEnrichment;
import org.cbioportal.model.GenericAssayCategoricalEnrichment;
import org.cbioportal.model.GenericAssayMolecularAlteration;
import org.cbioportal.model.MolecularProfileCaseIdentifier;
import org.cbioportal.model.MolecularProfile;
import org.cbioportal.model.Sample;
import org.cbioportal.model.GenericAssayEnrichment;
import org.cbioportal.model.GenomicEnrichment;
import org.cbioportal.model.Gene;
import org.cbioportal.model.GeneMolecularAlteration;
import org.cbioportal.persistence.MolecularDataRepository;
import org.cbioportal.service.ExpressionEnrichmentService;
import org.cbioportal.service.GeneService;
Expand Down
Loading

0 comments on commit 3c91d6c

Please sign in to comment.