Skip to content

Commit 0c8ba27

Browse files
committed
minor fix
1 parent 5758a02 commit 0c8ba27

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

seqchromloader/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def make_gc_match(coords, genome_fa, n, l=500, seed=1, gc_diff_max=0.05, max_att
168168
gc_percent_global = gc_total / nuc_total
169169
logger.info(f"Global GC content of input regions is {gc_percent_global}")
170170

171-
return make_gc_match_given_ratio(gc_percent_global, n, genome_fa)
171+
return make_gc_match_given_ratio(gc_percent_global, n, genome_fa, l=l, seed=seed, gc_diff_max=gc_diff_max, max_attemps=max_attemps, incl=incl, excl=excl)
172172

173173

174174
def make_gc_match_given_ratio(gc_ratio, n, genome_fa, l=500, seed=1, gc_diff_max=0.05, max_attemps=1000, incl=None, excl=None):

0 commit comments

Comments
 (0)