rba_string_homology_inter: Get Similarity Scores Hits of Proteins in Different Species

View source: R/stringdb.R

rba_string_homology_interR Documentation

Get Similarity Scores Hits of Proteins in Different Species

Description

Using this function, you can retrieve highest Smith-Waterman bit scores among your input proteins and proteins in every other STRING species (e.g. the closest homologous protein of your input protein in other species). Bit Scores serve as similarity scores between protein sequence; And, according to STRING documentations, as a proxy for protein homology.

Usage

rba_string_homology_inter(ids, species = NULL, species_b = NULL, ...)

Arguments

ids

Your protein ID(s). It is strongly recommended to supply STRING IDs. See rba_string_map_ids for more information.

species

Numeric: NCBI Taxonomy identifier of your input proteins; Human Taxonomy ID is 9606. (Recommended, but optional if your input is less than 100 IDs.)

species_b

(optional) Numeric: one or more NCBI Taxonomy identifiers of species to limit the closets homologous proteins search.

...

rbioapi option(s). See rba_options's arguments manual for more information on available options.

Details

Note that this function will return the highest similarity score hits of your given protein(s) and their closets homologous proteins in other species. to retrieve similarity scores of different proteins within the same species see rba_string_homology_intra.
Similarity matrix is imported -by STRING- from: Similarity Matrix of Proteins (SIMAP)

Value

A data frame with Your input proteins and it's closest homologous proteins among all other (or a defined) STRING species.

Corresponding API Resources

"POST https://string-db.org/api/{output-format}/homology_best? identifiers={your_identifiers}"

References

  • Damian Szklarczyk, Rebecca Kirsch, Mikaela Koutrouli, Katerina Nastou, Farrokh Mehryary, Radja Hachilif, Annika L Gable, Tao Fang, Nadezhda T Doncheva, Sampo Pyysalo, Peer Bork, Lars J Jensen, Christian von Mering, The STRING database in 2023: protein–protein association networks and functional enrichment analyses for any sequenced genome of interest, Nucleic Acids Research, Volume 51, Issue D1, 6 January 2023, Pages D638–D646, https://doi.org/10.1093/nar/gkac1000

  • STRING API Documentation

  • Citations note on STRING website

See Also

rba_string_map_ids, rba_string_homology_intra

Other "STRING": rba_string_annotations(), rba_string_enrichment(), rba_string_enrichment_image(), rba_string_enrichment_ppi(), rba_string_homology_intra(), rba_string_interaction_partners(), rba_string_interactions_network(), rba_string_map_ids(), rba_string_network_image(), rba_string_version()

Examples


rba_string_homology_inter(ids = "p53",
    species = 9606,
    species_b = 7070)


rba_string_homology_inter(ids = "ENSP00000269305", species = 9606)



rbioapi documentation built on April 4, 2025, 5:04 a.m.