Skip to content

Commit

Permalink
inputs.clinvar bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ervau committed Apr 7, 2023
1 parent 13010f6 commit c1a54d6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pypath/inputs/clinvar.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,13 @@

import io
import csv
import sys
import ctypes
import collections

import pypath.share.curl as curl
import pypath.resources.urls as urls

csv.field_size_limit(sys.maxsize)

csv.field_size_limit(int(ctypes.c_ulong(-1).value // 2))

def clinvar_raw() -> list[tuple]:
"""
Expand Down Expand Up @@ -144,4 +143,4 @@ def clinvar_citations() -> list[tuple]:

result.add(citation)

return list(result)
return list(result)

0 comments on commit c1a54d6

Please sign in to comment.