Skip to content

Commit

Permalink
respond to feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
vivbak committed Sep 26, 2023
1 parent 3e7179f commit 071ed4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/create_test_subset.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def main(
# Pull Participant Data
participant_data = []
internal_participant_ids: list = []
for sg in original_project_subset_data.get('project').get('samples'):
for sg in original_project_subset_data.get('project').get('samples', []):
participant = sg.get('participant')
if participant:
participant_data.append(participant)
Expand Down Expand Up @@ -466,7 +466,7 @@ def get_existing_analysis(
def get_sids_for_families(
project: str, families_n: int, additional_families: set[str]
) -> set[str]:
"""Returns specific sequencing groups to be included in the test project."""
"""Returns specific samples to be included in the test project."""

family_sgid_output = query(QUERY_FAMILY_SGID, {'project': project})

Expand Down

0 comments on commit 071ed4c

Please sign in to comment.