151
RNA structures (DSSR) / Re: Color each block nucleotide at each locations
« on: July 09, 2021, 03:49:05 pm »
OK. Let's forget about coloring DSSR blocks for the moment, focusing exclusively on PyMOL coloring of residues.
Could you color each nucleotide at each locations in PyMOL?
Now let G4 be G at position 4, the following will color its DSSR block yellow:
Let Gs be selection of Gs at postions 5, 10, 11, do the following to color their blocks blue:
HTH,
Xiang-Jun
Could you color each nucleotide at each locations in PyMOL?
Now let G4 be G at position 4, the following will color its DSSR block yellow:
Code: Bash
- select G4, resi 4
- dssr_block G4, block_color='G:yellow'
- # OR combined the above two steps as below:
- # dssr_block resi 4, block_color='N:yellow'
Let Gs be selection of Gs at postions 5, 10, 11, do the following to color their blocks blue:
Code: Bash
- select Gs, resi 5+10+11
- dssr_block Gs, block_color='G:blue'
- # OR combined as below:
- # dssr_block resi 5+10+11, block_color='N:blue'
HTH,
Xiang-Jun
