meta_ora
Run a meta-analysis ORA with files at the provided paths.
Parameters
gmt_path
-String
of the path to the gmt file of interestanalyte_list_paths
- Lists ofString
s of the path to the analyte files of interest.reference_list_paths
- Lists ofString
s of the paths to reference lists.
Returns
Returns a list of a list of dictionaries with the results containing the ORA results for every set.
The first list contains the results of the meta-analysis. The following lists are the results for each list individually.
Panics
Panics if the any file is malformed or not at specified path.
Example
import webgestaltpy
res = webgestaltpy.meta_ora("kegg.gmt", ["gene_list1.txt", "gene_list2.txt"], ["reference.txt", "reference.txt"])
res
would be a list containing the results of the meta-analysis and each list run
individually. In this example, res[0]
would look be the results of the meta-analysis.
res[1]
would be the results from gene_list1.txt
, res[2]
would be the results from gene_list2.txt
, and so on.
See the documentation for webgestaltpy.ora
for specifics about the format of the results.