Skip to content

Commit

Permalink
fix a but with multibam sample parsing from yaml files
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewprzh committed Jan 5, 2024
1 parent a5dc5c6 commit 7de3d5a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/input_data_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,8 @@ def get_samples_from_yaml(self, yaml_file_path):
exit(-2)
readable_names_dict[current_sample_name][fname] = readable_name
if len(current_sample) > 0:
sample_files.append([current_sample])
current_sample_list = [[s] for s in current_sample]
sample_files.append(current_sample_list)
experiment_names.append(current_sample_name)
if 'illumina bam' in sample.keys():
illumina_bam.append([normalize_path(yaml_file_path, ib) for ib in sample['illumina bam']])
Expand Down

0 comments on commit 7de3d5a

Please sign in to comment.