-
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,5 +16,10 @@ public class QualificationRunOptions | |
/// Should simulation be performed as part of the run? | ||
/// </summary> | ||
public bool Run { get; set; } | ||
|
||
/// <summary> | ||
/// Specifies if project files (snapshot and PK-Sim project file should be exported) | ||
/// </summary> | ||
public bool ExportProjectFiles { get; set; } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 commentThe reason will be displayed to describe this comment to others. Learn more. ok, let's keep it like this. |
||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -306,13 +306,13 @@ public IEnumerable<string> PredefinedValuesFor(string name) | |
return Enumerable.Empty<string>(); | ||
} | ||
|
||
public IReadOnlyList<string> DefaultMetaDataCategories => CoreConstants.ObservedData.DefaultProperties; | ||
public IReadOnlyList<string> DefaultMetaDataCategories { get; } = CoreConstants.ObservedData.DefaultProperties; | ||
|
||
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 commentThe 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... |
||
|
||
public bool MolWeightEditable => false; | ||
|
||
public bool MolWeightVisible => true; | ||
public bool MolWeightVisible { get; }= true; | ||
|
||
private IEnumerable<string> predefinedGenders => predefinedValuesFor(addPredefinedGenderValues); | ||
|
||
|
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.