![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
gwaslab.Sumstats
.Please check GWASLab documentation at https://cloufield.github.io/gwaslab/
Note: GWASLab is being updated very frequently for now. I will release the first stable version soon! Please stay tuned.
Warning: Known issues of GWASLab are summarized in https://cloufield.github.io/gwaslab/KnownIssues/ .
pip install gwaslab==3.5.4
import gwaslab as gl
# load plink2 output
mysumstats = gl.Sumstats("t2d_bbj.txt.gz", fmt="plink2")
# load sumstats with auto mode (auto-detecting common headers)
# assuming ALT/A1 is EA, and frq is EAF
mysumstats = gl.Sumstats("t2d_bbj.txt.gz", fmt="auto")
# or you can specify the columns:
mysumstats = gl.Sumstats("t2d_bbj.txt.gz",
snpid="SNP",
chrom="CHR",
pos="POS",
ea="ALT",
nea="REF",
neaf="Frq",
beta="BETA",
se="SE",
p="P",
direction="Dir",
n="N",
build="19")
# manhattan and qq plot
mysumstats.plot_mqq()
...
Create a Python 3.9 environment and install gwaslab using pip:
conda env create -n gwaslab_test -c conda-forge python=3.9
conda activate gwaslab
pip install gwaslab==3.4.45
or create a new environment using yml file environment_3.4.40.yml
conda env create -n gwaslab -f environment_3.4.40.yml
A docker file is available here for building local images.
environment.yml
name: gwaslab
channels:
- conda-forge
- defaults
dependencies:
- python=3.8.16=h7a1cb2a_3
- jupyter==1.0.0
- pip==23.1.2
- pip:
- adjusttext==0.8
- biopython==1.81
- gwaslab==3.4.16
- liftover==1.1.16
- matplotlib==3.7.1
- numpy==1.24.2
- pandas==1.4.4
- scikit-allel==1.3.5
- scikit-learn==1.2.2
- scipy==1.10.1
- seaborn==0.11.2
- statsmodels==0.13
- adjustText==0.8
- pysam==0.19
- pyensembl==2.2.3
- h5py==3.10.0
Thanks to @sup3rgiu, @soumickmj and @gmauro for their contributions to the source codes.
FAQs
A collection of handy tools for GWAS SumStats
We found that gwaslab demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.