79672234

Date: 2025-06-19 14:38:26
Score: 0.5
Natty:
Report link

use this...


myfasta <- readAAStringSet("my.fasta")

myalignment <- msa(myfasta, method = "Muscle", , type = "protein") 
# or if sequence is in a character object like mysequence <- c("ALGHIRK", "RANDEM") then use msa(mysequence, method = "Muscle", type = "protein")

print(myalignment, "complete") # to print on screen

sink("alignment.txt") # open a file connection to print to instead
print(myalignment, "complete")
sink() # close connection!

Cheers!!

Reasons:
  • Blacklisted phrase (1): Cheers
  • Has code block (-0.5):
Posted by: ktyagi