Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2055 old values not scaled #2092

Merged
merged 5 commits into from
Feb 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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";
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I created those so that we could remove the .ToString() used EVERYWHERE!!

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