Data Input

Table of Contents

There are two major input files for FABIO to perform TWAS fine-mapping on a binary trait of interest. Example data can be downloaded here.

1. Predicted GReX of the TWAS cohort #

  • An example R dataframe can be loaded from the downloaded file:
    grex <- data.table::fread('./example_grex.txt.gz')
    

2. Binary phenotype of the TWAS cohort #

  • An example R vector coding case as 1 and control as 0 can also be loaded from the downloaded file:
    pheno <- scan('./example_pheno.txt',numeric())