seer-pas-sdk 1.2.1__py3-none-any.whl → 1.2.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -143,9 +143,9 @@ def download_df(url, is_tsv=True, dtype={}, usecols=None):
143
143
  if not url:
144
144
  return pd.DataFrame()
145
145
  csv = pd.read_csv(
146
- url, dtype=dtype, sep="\t" if is_tsv else ",", usecols=usecols
146
+ url, sep="\t" if is_tsv else ",", usecols=usecols, engine="pyarrow"
147
147
  )
148
- return csv
148
+ return csv.astype(dtype=dtype) if dtype else csv
149
149
 
150
150
 
151
151
  def get_sample_info(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: seer-pas-sdk
3
- Version: 1.2.1
3
+ Version: 1.2.2
4
4
  Summary: SDK for Seer Proteograph Analysis Suite (PAS)
5
5
  Author-email: Ryan Sun <rsun@seer.bio>
6
6
  License:
@@ -194,9 +194,10 @@ License-File: LICENSE.txt
194
194
  Requires-Dist: boto3>=1.26.152
195
195
  Requires-Dist: botocore>=1.29.152
196
196
  Requires-Dist: pandas>=2.0.1
197
+ Requires-Dist: pyarrow>=17.0.0
197
198
  Requires-Dist: PyJWT>=2.8.0
198
199
  Requires-Dist: python-dotenv>=1.0.0
199
- Requires-Dist: Requests>=2.31.0
200
+ Requires-Dist: requests>=2.31.0
200
201
  Requires-Dist: tqdm>=4.65.0
201
202
  Requires-Dist: deprecation
202
203
  Dynamic: license-file
@@ -1,7 +1,7 @@
1
1
  seer_pas_sdk/__init__.py,sha256=Ie6atdmdBV-OmdHHXjhrGhdFGXiyP3JKhKrr3hyvSsA,563
2
2
  seer_pas_sdk/auth/__init__.py,sha256=e_eM4jJnnyKUdg4Nggzi9ypt2MLWcEJ8CmCPkUaQDSs,23
3
3
  seer_pas_sdk/auth/auth.py,sha256=_SI5CdEkfqfr4o5BQ79BuPbxGeI9p7tqxJd7mUqSAkI,8854
4
- seer_pas_sdk/common/__init__.py,sha256=VbtcWOt9_jR5NfETtYTqcUXII98Jj5sphr3lLSdIzdg,24445
4
+ seer_pas_sdk/common/__init__.py,sha256=WrRwmSONUdFD0ysT5jHwG2zWDd-v2wverjXY7BWZhHU,24488
5
5
  seer_pas_sdk/common/errors.py,sha256=4HFORWnaQQCMXRE8kwdsJWvQRB_3KFEZ7yMb391e4gA,142
6
6
  seer_pas_sdk/common/groupanalysis.py,sha256=DxB-gbQfYzl7p9MTYWDIqghcH-IeakzdYdrRZrlIHek,1730
7
7
  seer_pas_sdk/core/__init__.py,sha256=rxbKgg-Qe24OaxX2zyHHYPYgDCTEKE_-41bB2wvpvL4,25
@@ -12,8 +12,8 @@ seer_pas_sdk/objects/groupanalysis.py,sha256=x3D_5NmYBoPDilNCQqUoCFARIfIeUq4FBY3
12
12
  seer_pas_sdk/objects/headers.py,sha256=RilNzB_Nhid3U8j93BxJYcRrgDmd_1bAuI0P465xd0g,2727
13
13
  seer_pas_sdk/objects/platemap.py,sha256=8IvJPAecs_e_FyqibzhCw-O4zjCFnf-zMUp_5krTEsg,5864
14
14
  seer_pas_sdk/objects/volcanoplot.py,sha256=lTrTOVg74nT3uo-P1edQJC1ZbdoiLMtQ3VJd9CnzmoM,9396
15
- seer_pas_sdk-1.2.1.dist-info/licenses/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
16
- seer_pas_sdk-1.2.1.dist-info/METADATA,sha256=_zLtgk1zE8eWRPizPS9h2tEbfhJ3DOAH2ePNk4ptwvw,13413
17
- seer_pas_sdk-1.2.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
18
- seer_pas_sdk-1.2.1.dist-info/top_level.txt,sha256=-2kZ-KFMGtXwr8H1O5llMKlcJ8gRKohEmrIvazXB61s,13
19
- seer_pas_sdk-1.2.1.dist-info/RECORD,,
15
+ seer_pas_sdk-1.2.2.dist-info/licenses/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
16
+ seer_pas_sdk-1.2.2.dist-info/METADATA,sha256=Lw-pb90n0vo7K4I-2wnQm_LvsrVzXpEYmj8t4vwToAA,13444
17
+ seer_pas_sdk-1.2.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
18
+ seer_pas_sdk-1.2.2.dist-info/top_level.txt,sha256=-2kZ-KFMGtXwr8H1O5llMKlcJ8gRKohEmrIvazXB61s,13
19
+ seer_pas_sdk-1.2.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5