EBISPOT / gwas-sumstats-tools

Apache License 2.0
7 stars 1 forks source link

fix: resolve `Float128` dtype error on Windows #23

Closed karatugo closed 10 months ago

karatugo commented 11 months ago

Summary

This PR addresses the TypeError associated with the Float128 data type that Windows users encountered when running gwas-ssf without any options or files. The error was due to the lack of consistent support for the Float128 data type across platforms.

Changes

Testing

The changes were tested on both Windows and macOS platforms:

Test Steps:

  1. Set up a fresh environment using Miniconda3 with Python 3.11.4.
  2. Cloned the repository and checked out the 15-typeerror-dtype-float128 branch.
  3. Installed the project dependencies using poetry install.
  4. Ran the gwas-ssf command without options or files.

On both platforms, the previously reported error was not observed, confirming that the fix works as intended.

Resolves #15.