-
Notifications
You must be signed in to change notification settings - Fork 50
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
Fixes #2081 PKSim CLI filter simulation #2082
Conversation
@@ -906,6 +906,9 @@ public static string MapToSnapshotNotSupportedWithoutContext(string snapshotType | |||
|
|||
public static string CannotFindSimulationInSnapshot(string simulationName, string project) => CannotFindBuildingBlockInSnapshot(ObjectTypes.Simulation, simulationName, project); | |||
|
|||
public static string SimulationUsedInPlotsAreNotExported(IReadOnlyList<string> simulationNames, string project) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Making sure that simulation used in plots are also referenced here. This is just a simple validation step.
/// <summary> | ||
/// Specifies if project files (snapshot and project should be exported) | ||
/// </summary> | ||
public bool ExportProjectFiles { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we export the project files or not. Default will be not because I don't think we need to export those for the qualification
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, let's keep it like this.
If this option can be passed to the QualificationRunner later I'm perfectly fine with that :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
READY FOR REVIEW
public IReadOnlyList<string> ReadOnlyMetaDataCategories => new List<string> { }; | ||
public IReadOnlyList<string> ReadOnlyMetaDataCategories { get; } = new List<string> { }; | ||
|
||
public bool MolWeightAlwaysEditable { get; } = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@georgeDaskalakis I changed this stuff here. Also when you always return a constant, use {get;} instead 0f => false. A bit faster...
No description provided.