Description Usage Arguments Examples
View source: R/filter_reference.R
Filter out genes from a GFF file that are not expressed in a particular stage/cell type of interest. Works by filtering out lines with genes that match based on a reference set of gene names.
1 2 | filter_reference(gff, genes_names = NULL, eliminate_matches = TRUE,
verbose = TRUE)
|
gff |
gffObject. Object from the read_gff function. |
genes_names |
Vector of strings. List of gene IDs by which to filter. |
eliminate_matches |
Logical. Should the matches that are found be filtered out (TRUE) or should non-matched be filtered out (FALSE)? (Default: TRUE) |
verbose |
Logical. Should the process print out which read and gene it is currently searching? (Default: TRUE) |
1 | gff_filtered <- filter_reference(gff, gene_names = c("geneA", "geneB"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.