The gene expression data used in this example is from:
Pinto SM, Subbannayya Y, Kim H, Hagen L, Górna MW, Nieminen AI, Bjørås M, Espevik T, Kainov D, Kandasamy RK. Multi-OMICs landscape of SARS-CoV-2-induced host responses in human lung epithelial cells. iScience. 2023 Jan 20;26(1):105895. doi: 10.1016/j.isci.2022.105895. Epub 2022 Dec 28. PMID: 36590899; PMCID: PMC9794516.
Here is the simplest way to set up and run GeneFEAST to generate a single FEA summary report. There’s a note for more computationally advanced users below.
You can download each file individually, or download a zip file of the GeneFEAST repo, if you prefer:
For example, in Linux:
mkdir my_genefeast_project
cd my_genefeast_project
For example, in Linux, use the following commands to copy the three files (listed above) from their original locations to your GeneFEAST project directory:
cp /full/path/to/GO_BP_3h_0.0001_4GF_basic.csv .
cp /full/path/to/mmc2_goi_3h.csv .
cp /full/path/to/mmc2_3h_setup.yml .
# The precondition for these cp commands is that they are called from inside your GeneFEAST project directory.
Through its docker container:
docker run --rm -v ${PWD}:/data -w /data ghcr.io/avigailtaylor/genefeast gf mmc2_3h_setup.yml <OUTPUT_DIR>
# The precondition for this command is that the setup YAML file and data files are located in directory ${PWD}.
# (Technical note for more advanced users: the -v flag is bind-mounting directory ${PWD} on the host machine to the directory called data in the container.)
Through the command line:
gf <mmc2_3h_setup.yml> <OUTPUT_DIR>
In Python:
from genefeast import gf
gf.gf(<mmc2_3h_setup.yml>, <OUTPUT_DIR>)
NOTES
- When you run GeneFEAST, it will use the setup YAML file to count how many FEAs are being summarised, and then generate either a single or multi FEA summary report accordingly.
- Make sure <OUTPUT_DIR> does not already exist.
If, like me, you prefer to use a directory structure that separates code, input, and output, that's absolutely fine. If you know what you're doing you can replace file names with file paths, in either or both of the main call to GeneFEAST and the setup YAML file, and GeneFEAST will know what to do.... I've just put the most simple process here so that all users can get started with GeneFEAST!
On an extra technical note - if you're using GeneFEAST via its Docker container please do make sure that all the directories referenced in your GeneFEAST call and setup YAML file are bind-mounted to the correct directory on the host computer :)
<OUTPUT_DIR>
mmc2_3h_communities_summary.html
IMPORTANT
Viewing the HTML report requires a web-browser with HTML5 and JavaScript 1.6 support.
Keep all output generated by GeneFEAST in
<OUTPUT_DIR>
; the HTML report uses relative links to images, and will break if the relative directory structure is broken.
Compare your GeneFEAST report to this example output.