Skip to content

Commit

Permalink
fix: one-off
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Jun 20, 2023
1 parent 2c58935 commit 59ee988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion one-offs/rewrite_rnaseq_matrix_symbols.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

with open("/opt/varwig2/input-files/matrices/RNA-seq_batch.age.corrected_PCsreg.txt", "r") as rna_f, \
open("/opt/varwig2/input-files/matrices/RNA-seq_batch.age.corrected_PCsreg_symbol.txt", "w") as rna_w:
rna_w.write(next(rna_f) + "\n") # copy header
rna_w.write(next(rna_f)) # copy header
for row in tqdm(rna_f):
if not row.strip():
continue
Expand Down

0 comments on commit 59ee988

Please sign in to comment.