View source: R/strip_sequence.R
strip_sequence_Skyline | R Documentation |
This function takes Skyline output containing a column with peptide sequences to be stripped and converts it into a new dataframe with the stripped sequence
strip_sequence_Skyline(data, column, convert_column)
data |
A dataframe with a column containing peptide sequences to be stripped |
column |
The name of the column containing the peptide sequences to be stripped. |
convert_column |
The name of the column where the stripped sequences will be stored. |
A dataframe with a column containing stripped sequence
library(data.table)
data <- data.table(
'Peptide Modified Sequence' = c(
"AGLC[+57]QTFVYGGC[+57]R",
"AAAASAAEAGIATTGTEDSDDALLK",
"IVGGWEC[+57]EK"
),
Condition = c("A", "B", "B")
)
column <- 'Peptide Modified Sequence'
convert_column <- 'Sequence'
converted_data <- strip_sequence_Skyline(data, column, convert_column)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.