Skip to content

jware-solutions/ggca

Repository files navigation

Gene GEM Correlation Analysis (GGCA)

CI

Computes efficiently the correlation (Pearson, Spearman or Kendall) and the p-value (two-sided) between all the pairs from two datasets. It also supports CpG Site IDs.

IMPORTANT: GGCA is the heart of a platform called Multiomix. On the official website you will be able to use this library in a fast and agile way through a friendly graphical interface (along with many extra features!). Go to https://multiomix.org/ to get started now!

Python PyPi | Rust Crate

Index

Usage

There are a few examples in examples folder for both languages.

Python

  1. Install: pip install ggca
  2. Configure and call the correlate method:
import ggca


mrna_file_path = "mrna.csv"
gem_file_path = "mirna.csv"

try:
	(result_combinations, evaluated_combinations) = ggca.correlate(
		mrna_file_path,
		gem_file_path,
		correlation_method=ggca.CorrelationMethod.Pearson,
		correlation_threshold=0.5,
		sort_buf_size=2_000_000,
		adjustment_method=ggca.AdjustmentMethod.BenjaminiHochberg,
		all_vs_all=True,
		gem_contains_cpg=False,
		collect_gem_dataset=None,
		keep_top_n=2  # Keeps only top 2 elements
	)

	print(f'Number of resulting combinations: {len(result_combinations)} of {evaluated_combinations} evaluated combinations')
	for combination in result_combinations:
		print(
			combination.gene,
			combination.gem,
			combination.correlation,
			combination.p_value,
			combination.adjusted_p_value
		)
except ggca.GGCADiffSamplesLength as ex:
	print('Raised GGCADiffSamplesLength:', ex)
except ggca.GGCADiffSamples as ex:
	print('Raised GGCADiffSamples:', ex)
except ggca.InvalidCorrelationMethod as ex:
	print('Raised InvalidCorrelationMethod:', ex)
except ggca.InvalidAdjustmentMethod as ex:
	print('Raised InvalidAdjustmentMethod:', ex)
except ggca.GGCAError as ex:
	print('Raised GGCAError:', ex)

Rust

  1. Add crate to Cargo.toml: ggca = { version = "1.0.1", default-features = false }
  2. Create an analysis and run it:
use ggca::adjustment::AdjustmentMethod;
use ggca::analysis::Analysis;
use ggca::correlation::CorrelationMethod;

// File's paths
let df1_path = "mrna.csv";
let df2_path = "mirna.csv";

// Some parameters
let gem_contains_cpg = false;
let is_all_vs_all = true;
let keep_top_n = Some(10); // Keeps the top 10 of correlation (sorting by abs values)
let collect_gem_dataset = None; // Better performance. Keep small GEM files in memory

let analysis = Analysis::new_from_files(df1_path.to_string(), df2_path.to_string(), false);
let (result, number_of_elements_evaluated) = analysis.compute(
	CorrelationMethod::Pearson,
	0.7,
	2_000_000,
	AdjustmentMethod::BenjaminiHochberg,
	is_all_vs_all,
	collect_gem_dataset,
	keep_top_n,
)?;

println!("Number of elements -> {} of {} combinations evaluated", result.len(), number_of_elements_evaluated);

for cor_p_value in result.iter() {
	println!("{}", cor_p_value);
}

Note that env_logger crate is used to provide some warning in case some mRNA/GEM combinations produce NaN values (for instance, because the input array has 0 std). In that case, you can add RUST_LOG=warn to your command to produce warnings in the stderr. E.g:

RUST_LOG=warn cargo test --tests

or

RUST_LOG=warn cargo run --example basic

Development and contributions

All kind of help is welcome! Feel free o submit an issue or a PR.

  • Build for rust: cargo build [--release] or run an example in the examples folder with cargo run --example [name of the example]
  • Build and run in Python: run cargo build [--release] and follow the official instructions to import the compiled library in your Python script.
  • Build for Python (uses Maturin) and it's generated by CI maturin-actions

Tests

All the correlation, p-values and adjusted p-values were taken from cor.test and p.adjust functions from the R programming language and statsmodels package for Python language.

Data in small_files folder was retrieved with random sampling from the Colorectal Adenocarcinoma (TCGA, Nature 2012) dataset. This dataset can be downloaded from cBioPortal datasets page or this direct link.

All the correlations results were compared directly with R-Multiomics output (old version of multiomix.org only available for R lang).

Performance

We use criterion.rs to perform benchmarks. In case you have made a contribution you can check that no regression was added to the project. Just run cargo bench before and after your changes to perform a statistical analysis of performance.

Troubleshooting

Undefined References During Compilation (Ubuntu)

If you encounter errors related to undefined references when compiling the project on Ubuntu, such as:

undefined reference to `_Py_Dealloc`
undefined reference to `PyGILState_Release`
undefined reference to `PyUnicode_AsUTF8AndSize`

Or linking errors like:

error: linking with cc failed: exit status: 1
...
= note: some extern functions couldn't be found; some native libraries may need to be installed or have their path specified
= note: use the -l flag to specify native libraries to link
= note: use the cargo:rustc-link-lib directive to specify the native libraries to link with Cargo (see https://doc.rust-lang.org/cargo/reference/build-scripts.html#cargorustc-link-libkindname)

This typically happens because the necessary Python development libraries are either not installed or the linker is unable to find them. Below are steps to resolve this issue.

Steps to Resolve:

  1. Install Python Development Libraries: Ensure that the Python development headers and libraries are installed. You can install them using the following command:

    sudo apt-get install python3-dev

    This will provide the necessary files for linking Rust with Python.

  2. Ensure Correct Python Version: Make sure you are using the correct version of Python that matches the libraries you are linking against. You can check your Python version by running:

    python3 --version

    If you have multiple Python versions installed, ensure that your environment is set up to use the correct one. You can do this using virtual environments or by explicitly setting the PYTHON_PATH and LD_LIBRARY_PATH environment variables.

  3. Set Up Correct Linker Flags: If you are still encountering issues, ensure that the linker is able to find the necessary libraries. Add the following configuration to your Cargo.toml:

    [dependencies]
    pyo3 = { version = "0.15", features = ["extension-module"] }
    
    [build]
    rustflags = ["-L", "/usr/lib/python3.x/config-x.x-x86_64-linux-gnu", "-lpython3.x"]

    Replace 3.x with the version of Python you're using, e.g., 3.8 for Python 3.8.

    Or just set the environment variables before compiling:

    export RUSTFLAGS="-L /usr/lib/python3.x/config-3.x-x86_64-linux-gnu -lpython3.x"
  4. Verify Library Paths: Ensure that the paths to the Python libraries are correctly set up. You can export these variables before compiling:

    export LD_LIBRARY_PATH=/usr/lib/python3.x/config-x.x-x86_64-linux-gnu:$LD_LIBRARY_PATH
    export LIBRARY_PATH=/usr/lib/python3.x/config-x.x-x86_64-linux-gnu:$LIBRARY_PATH

    This will help the linker locate the necessary Python libraries.

By following these steps, the undefined reference errors should be resolved, and your compilation should complete successfully. If the issue persists, consider checking your system’s Python installation and ensuring all dependencies are properly installed.

Considerations

If you use any part of our code, or the tool itself is useful for your research, please consider citing:

@article{camele2022multiomix,
  title={Multiomix: a cloud-based platform to infer cancer genomic and epigenomic events associated with gene expression modulation},
  author={Camele, Genaro and Menazzi, Sebastian and Chanfreau, Hern{\'a}n and Marraco, Agustin and Hasperu{\'e}, Waldo and Butti, Matias D and Abba, Martin C},
  journal={Bioinformatics},
  volume={38},
  number={3},
  pages={866--868},
  year={2022},
  publisher={Oxford University Press}
}