Glossary - programmatic interfaceļ
- Attribute Reference Tableļ
A csv table that contains user-defined information (āattributesā, such as āgenes expressed in intestineā, āepigenetic genesā or āgenes that have paralogsā) abut genes/genomic features. Every row in the file is a gene/genomic feature, and every column is an attribute. You can define such table to be your default Attribute Reference Table using the function general.set_attr_ref_table_path(). The attributes in the table can be used both to filter your data with functions like Filter.filter_by_attributeā, and to perform enrichment analysis with various functions from the `enrichment module.
- Biotype Reference Tableļ
A csv table that contains information about the biotype (protein coding, pseudogene, lncRNA, etcā¦) of genomic features. You can define such table to be your default Biotype Reference Table using the function general.set_biotype_ref_table_path(). Various functions in RNAlysis, such Filter.biotypes_from_ref_table() and Filter.filter_biotype_from_ref_table() will use the information in the Biotype Reference Table to filter data based on biotype, or display information about the biotype of the genomic features in your Filter objects.
- CountFilterļ
A Filter object that supports count matrices, where each row represents a gene or genomic feature, and every column represents a condition or replicate.
- DESeqFilterļ
A Filter object that supports differential expression data, formatted like the output files of DESeq2. See the user guide for more details.
- FeatureSetļ
A container for a set of gene/feature IDs. A FeatureSet can optionally be named. Using the Enrichmemt module, you can run various enrichment analyses on FeatureSet objects.
- Filterļ
The most basic type of Filter object. Can support any form of tabular data, and contains only the basic filtering functions.
- Filter objectļ
- Filter objectsļ
An object that stores your tabular data and its filename. You can apply filtering/normalizing functions to your data using the Filter object. Each type of Filter object supports different data structures and offers different utilities. For more details, see Filter, :term:āCountFilterā, :term:`DESeqFilterā and :term:`FoldChangeFilterā.
- FoldChangeFilterļ
A Filter object that supports fold change values, where each row represents a gene or genomic feature, and the only other column contains fold-change values between two conditions. Can be loaded from a csv file, or generated from a CountFilter.
- Pipelineļ
An object that stores a series of functions and their corresponding arguments. You can then use the Pipeline object to apply this series of functions, with the same order and same arguments, to any number of Filter objects. Pipelines can contain filtering functions, normalization functions, splitting functions and visualization functions.
- RankedSetļ
A subtype of FeatureSet that, instead of storing an unsorted set of gene/feature IDs, also stores their order. You can run enrichment analyses on RankedSet objects as you would on a FeatureSet object. However, you can also perform single-list enrichment (enrichment analysis without a background set, based on the ranking/order of the gene IDs) on RankedSet objects.