Skip to content

Commit

Permalink
[single_bed_file] fix int
Browse files Browse the repository at this point in the history
  • Loading branch information
LaraFuhrmann committed Nov 17, 2023
1 parent eef40b0 commit 2147d7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def main(fname_reference, fname_insert_bed, genome_size):
f.write(
str(seq_id)
+ " 1 "
+ str(genome_size+1)
+ str(int(genome_size)+1)
+ " scheme_INSERT_1 1 +"
)

Expand Down

0 comments on commit 2147d7b

Please sign in to comment.