Skip to content

Commit

Permalink
Update pgsCategory filter
Browse files Browse the repository at this point in the history
  • Loading branch information
lukfor committed Dec 11, 2023
1 parent 7aecb01 commit c73a0c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public boolean run(WorkflowContext context) {
if (pgsPanel != null) {
context.println(" PGS: " + FileUtil.getFilename(pgsPanel.getScores()));

if (pgsCategory != null) {
if (pgsCategory != null && !pgsCategory.isEmpty() && !pgsCategory.equals("all")) {
String includeScoreFilename = FileUtil.path(context.getLocalTemp(), "include-scores.txt");
FilterMetaCommand filter = new FilterMetaCommand();
filter.setCategory(pgsCategory);
Expand Down

0 comments on commit c73a0c3

Please sign in to comment.