Skip to content
/ NWPV2 Public

Method of Combined P-value to identify Differential Expressed Gene in dataset

Notifications You must be signed in to change notification settings

swiri021/NWPV2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

NWPV2

Method of Combined P-value to identify Differential Expressed Gene in dataset

Reference

Optimally weighted Z-test is a powerful method for combining probabilities in meta-analysis

Example :

from statistics.nwpv import nwpv
import pandas as pd
import numpy as np


#Input must be Pandas DataFrame
df = pd.read_csv('Your_data.csv')

#Test input (Size >= 3)
test = ['Sample1', 'Sample2', 'Sample3',....]

#Control input (Size >= 3)
control = ['SampleC1', 'SampleC2', 'SampleC3',....]

#Call the class
nwpv = nwpv_calculation(df, test, control)

#Result
print nwpv.get_result()

About

Method of Combined P-value to identify Differential Expressed Gene in dataset

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages