Skip to content

Commit

Permalink
read bed instead of csv
Browse files Browse the repository at this point in the history
  • Loading branch information
5im1z committed Oct 30, 2024
1 parent e0450c8 commit d97a336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion depmapomics/mutations.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def aggregateGermlineMatrix(
for name, row in tqdm(
sample_table_valid.iterrows(), total=len(sample_table_valid)
):
sample_mut = pd.read_csv(row[colname])
sample_mut = pd.read_csv(row[colname], sep="\t")
if header == False:
all_muts.append(sample_mut)
header = True
Expand Down

0 comments on commit d97a336

Please sign in to comment.