Skip to content

Commit

Permalink
Solve #10 correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
AlessioMilanese authored Apr 28, 2021
1 parent 35977f8 commit 51d08f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stag/create_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def find_raw_names_ncol(file_name):
with open(file_name) as f:
for gene, *align in csv.reader(f, delimiter="\t"):
# solve issue #10
gene.replace("/","-")
gene = gene.replace("/","-")
# add to list
gene_names.append(gene)
return gene_names, len(align)
Expand Down

0 comments on commit 51d08f2

Please sign in to comment.