Skip to content
Snippets Groups Projects
Commit fbf59ed2 authored by Tim O'Donnell's avatar Tim O'Donnell
Browse files

small fixes

parent 54b67d2b
No related merge requests found
from .presentation_model import PresentationModel
from .presentation_model import PresentationModel, build_presentation_models
from .percent_rank_transform import PercentRankTransform
from . import presentation_component_models, decoy_strategies
__all__ = [
"PresentationModel",
"build_presentation_models",
"PercentRankTransform",
"presentation_component_models",
"decoy_strategies",
......
......@@ -25,7 +25,7 @@ class Expression(PresentationComponentModel):
group in expression_values.columns
for group in experiment_to_expression_group.values())
assert_no_null(experiment_to_expression_group)
assert_no_null(expression_values)
self.experiment_to_expression_group = experiment_to_expression_group
self.expression_values = expression_values
......
......@@ -16,6 +16,9 @@ class FixedAffinityPredictions(PresentationComponentModel):
- "value", "percentile_rank" (IC50 and percent rank)
- peptide (string)
- allele (string)
name : string
Used to name output columns and in debug messages
"""
def __init__(
......
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