View source: R/predict_topologies_from_sequences.R
predict_topologies_from_sequences | R Documentation |
Run PureseqTM directy on a protein sequence
predict_topologies_from_sequences(
protein_sequences,
folder_name = get_default_pureseqtm_folder(),
temp_fasta_filename = tempfile(fileext = ".fasta")
)
protein_sequences |
one ore more protein sequence,
each sequence with the amino acids as capitals, for
example |
folder_name |
superfolder of PureseqTM.
The superfolder's name is |
temp_fasta_filename |
temporary FASTA filename, which will deleted after usage |
a topology as a string of zeroes and ones, where a one denotes that the corresponding amino acid is located within the membrane.
Richèl J.C. Bilderbeek
use mock_predict_topologies_from_sequences to mock the prediction of protein sequences, as can be useful in testing
if (is_pureseqtm_installed()) {
protein_sequence <- paste0(
"QEKNWSALLTAVVIILTIAGNILVIMAVSLEKKLQNATNYFLM",
"SLAIADMLLGFLVMPVSMLTILYGYRWP"
)
predict_topology_from_sequence(protein_sequence)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.