Skip to content

Commit

Permalink
2055 old values not scaled (#2092)
Browse files Browse the repository at this point in the history
* WIP

* fixes #2055 old values not scaled

* Remove dummy change

* Remove dummy change

* Run styler
  • Loading branch information
msevestre authored Feb 15, 2022
1 parent 0cd6a56 commit a893355
Show file tree
Hide file tree
Showing 4 changed files with 215 additions and 127 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,16 @@

namespace PKSim.Presentation.Presenters.ProteinExpression
{
public enum ColumnNamesOfTransferTable
public static class ColumnNamesOfTransferTable
{
Container,
DisplayName,
RelativeExpressionOld,
ExpressionValue,
RelativeExpressionNew,
Unit
public static string Container = "Container";
public static string DisplayName = "DisplayName";
public static string RelativeExpressionOld = "RelativeExpressionOld";
public static string RelativeExpressionOldPercentage = "RelativeExpressionOldPercentage";
public static string ExpressionValue = "ExpressionValue";
public static string RelativeExpressionNew = "RelativeExpressionNew";
public static string RelativeExpressionNewPercentage = "RelativeExpressionNewPercentage";
public static string Unit = "Unit";
};

public interface IProteinExpressionsPresenter : IWizardPresenter, IPresenter<IProteinExpressionsView>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ public AddCompoundUICommand(ICompoundTask compoundTask) : base(compoundTask)
}
}

public class AddExpressionProfileCommand<TMolecule>:IUICommand where TMolecule : IndividualMolecule
public class AddExpressionProfileCommand<TMolecule> : IUICommand where TMolecule : IndividualMolecule
{
private readonly IExpressionProfileTask _expressionProfileTask;

public AddExpressionProfileCommand(IExpressionProfileTask expressionProfileTask)
public AddExpressionProfileCommand(IExpressionProfileTask expressionProfileTask)
{
_expressionProfileTask = expressionProfileTask;
}
Expand Down Expand Up @@ -92,5 +92,4 @@ public AddSimulationCommand(ISimulationTask simulationTask) : base(simulationTas
{
}
}

}
Loading

0 comments on commit a893355

Please sign in to comment.