Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steven-shuken/permFDP
An R package for correcting p-values for multiple hypothesis testing in comparative quantitative omics experiments using permutation-based FDP estimation.
https://github.com/steven-shuken/permFDP
Last synced: 1 day ago
JSON representation
An R package for correcting p-values for multiple hypothesis testing in comparative quantitative omics experiments using permutation-based FDP estimation.
- Host: GitHub
- URL: https://github.com/steven-shuken/permFDP
- Owner: steven-shuken
- Created: 2022-07-11T19:03:08.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-04-12T14:21:36.000Z (over 1 year ago)
- Last Synced: 2024-08-02T13:31:32.023Z (3 months ago)
- Language: C++
- Size: 734 KB
- Stars: 10
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-proteomics - PermFDP - R - Package to perform multiple hypothesis correction using permutation based FDP. One of the better performing methods for multiple test corrections. - [paper](https://pubs.acs.org/doi/full/10.1021/acs.analchem.2c03719?casa_token=4CgZMMnAmjgAAAAA%3A-8SyKwz2Hs3L-yRXXQDkq45ZBPW8nexcpqaYzDB5Ok-Kgp0C_W9KPscLE-zUfN2nZUv8uiNYZZcCxy-7) the paper isn't on the tool, it's just a paper that uses it and compares it to other methods. (6. Stastical Analysis / Table of Contents)
README
# permFDP
An R package for correcting p-values for multiple hypothesis testing in comparative quantitative omics experiments using permutation-based FDP estimation.## Installation
Once you have the `devtools` package installed, you can install `permFDP` by using the `install_github()` command:
```
install_github('steven-shuken/permFDP')
```Expect to see two warnings.
## Usage
The only function currently intended for use is `permFDP.adjust.threshold()`. Use `?permFDP::permFDP.adjust.threshold()` for instructions. Briefly, you need:
1. A vector of p-values
2. The uncorrected rejection threshold
3. A data frame of quantities (for generating the permutated hit counts). Note: the row order does not have to match the p-value order, i.e., the first p-value does not have to correspond to the first analyte/row, etc.
4. A vector of 1s and 2s specifying which columns in the data frame are in which group
5. The number of permutations to perform (at least 100 is recommended).The function will return the corrected rejection threshold to control the FDR according to the rejection threshold you supplied. E.g., if you supply an uncorrected rejection threshold of 0.05, the estimated FDR will now be 5% using the new corrected rejection threshold.