Hello :)
I want to ask if there is a Python script or any other languages that can undergo the task shown below or something similar.
The task:
Input --> Wild-type (WT) protein sequence and indicate positions where you want mutations to occur.
Output --> Generate several sequences with different permutations using the 20 amino acids at these specific positions.
Thanks.
i know if we have any python script for this task. if you can post an example, i can look at it and provide some python code ideas how to do it.
I'll bite! what kind of ideas??
Yeah sure for example:
Input
The Output are mutated sequences at positions 2 and 4 with the 20 amino acids:
There should be around 20^2 combinations
You can use
rotkit.mutate
in pyMOL. The basic command should bemutate(molecule,chain,resi,target,mutframe)
.