Access the GISAID Flu database using Python. Inspired by GISAIDR, which is an R package for accessing the EpiCoV, EpiRSV and EpiPox database of GISAID.
# use pip
pip install gisflu
# use pdm
pdm add gisflu
import gisflu
# Log in with provided username and password
gisflu.login("myusername", "mypassword")
# Log in using environment variables
gisflu.login()
If use environment variables to login, you should export GISFLU_USERNAME
and GISFLU_PASSWORD
in your environment, or save them as a .env
file in the current working directory.
cred = gisflu.login()
gisflu.search(cred, type=["A"], HA=["3"], NA=["2"],
collectDateFrom="2020-01-01", recordLimit=10)
cred = gisflu.login()
isolateIds = ["EPI_ISL_19185107", "EPI_ISL_19151100"]
gisflu.download(cred, isolateIds, downloadType="protein", segments=["HA", "NA"],
filename="records.fasta")