Skip to contents

Remove prefix from KEGG foreign database identifiers

Usage

kegg_rm_prefix(data, ..., .to_names = TRUE)

Arguments

data

A data frame (tibble) with identifier column(s).

...

Columns where the prefixes should be removed, as a tidyselect selection. If empty, everything() is used to select all columns.

.to_names

Logical: if TRUE, the column names will be updated to reflect the removed prefixes.

Value

A data frame (tibble) with the prefixes removed.

Examples

kegg_rm_prefix(kegg_conv("ncbi-geneid", "hsa"))
#> # A tibble: 24,685 × 2
#>    hsa       ncbi_geneid
#>    <chr>     <chr>      
#>  1 1         1          
#>  2 10        10         
#>  3 100       100        
#>  4 1000      1000       
#>  5 10000     10000      
#>  6 100008586 100008586  
#>  7 100008587 100008587  
#>  8 100008588 100008588  
#>  9 100008589 100008589  
#> 10 10001     10001      
#> # ℹ 24,675 more rows