Hi friends! I am back with the second part of my bio-molecular visualization series. If you missed the first part, please see it here: [Visualizing bio-molecules in Computer[Part-1]: Let us inspect a PDB file and see it using VMD](https://steemit.com/steemstem/@dexterdev/visualizing-bio-molecules-in-computer-part-1-let-us-inspect-a-pdb-file-and-see-it-using-vmd) <center></center><sub>Simulation of a Ubiquitin molecule(PDB: 1UBQ) in water(not shown for clarity) visualized in VMD using `New cartoon` style</sub> ## Recap from the first part - We learned about PDB file format. - Visualized 1E6J.pdb using VMD. --- What else can we do? When you visualize(or read it in a text editor) this PDB file in VMD, you will notice that it has multiple chains. Let us first get the information about those chains. ## Let us do more with VMD to study 1E6J.pdb So let us load 1E6J.pdb by `vmd 1E6J.pdb` from terminal. I have changed the `perspective` view to `orthographic` from `Display` option in `VMD Main`. In the `Graphics`->`Representations`, the `Drawing Method` is chosen as `NewCartoon` and the `Coloring Method` is selected as `Chain`. We see three chains in the VMD Display. Each chain is assigned a color automatically. Let us pull this information via `Tcl` scripting language embedded in the VMD software. (I have changed the background color of the VMD from black to white for better visibility of protein chains. Let this be an exercise. I will give 1 SBD prize for the person who correctly comments first how to achieve this. :) )  ### Loading the Tcl scripting environment Go to `Extensions` -> `Tk Console` in `VMD Main`. Now what you see is a window like below:  Let us do these tasks: - First, select all atoms. - Display the total atoms in the PDB file - Then read the chains in the PDB file and display it. `set sel [atomselect 0 "all"]` `set` is a command and `sel` is a variable. `atomselect` is another command which selects `all` atoms from molecule-id `0`.  All atoms in the mol-id 0 that is 1E6J.pdb are transferred to a variable called sel, which should be assigned as $sel. Let us see the number of atoms in this selection. For that give the next command: `$sel num`  Let us try `$sel get chain` to display all chains.  Something wrong happened. It is displaying all 3 chains. But it is assigned with all atoms.H,L and P are all the 3 chains. We only want the unique list. So let us modify our code as below: `lsort -unique [$sel get chain]`  We have displayed the name of three chains in the PDB files. Now to count the length of this list use `llength` as below: `llength [lsort -unique [$sel get chain]]`  Some shortcuts for VMD in GUI-mode can be found at this link: http://www.ks.uiuc.edu/Research/vmd/vmd-1.7.1/ug/node30.html To reset the view, just press `=` key. `R` is rotate mode, `T` is translate mode. Once you press these keys while in the visualization mode, you can use your mouse to manipulate things further like to zoom-in or zoom-out using scroll button. You can use mouse right button to move the molecule is a rotation style or translation style etc after using respective keys from the keyboard once. ### Let us rotate the VMD axis Original:  `rotate z by +90`:  ## Coming up - Fitting 2 similar chains - Measuring distances between atoms - And much more ## References - Humphrey, W., Dalke, A. and Schulten, K., "VMD - Visual Molecular Dynamics", J. Molec. Graphics, 1996, vol. 14, pp. 33-38. - [VMD userguide](http://www.ks.uiuc.edu/Research/vmd/vmd-1.9.1/ug.pdf) - [VMD tutorial](http://www.ks.uiuc.edu/Training/TutorialsOverview/vmd/vmd-tutorial.pdf) - Citing PDB related papers: See [here](https://www.rcsb.org/pages/policies#References). - Monaco-Malbet, Stéphanie, et al. "Mutual conformational adaptations in antigen and antibody upon complex formation between an Fab and HIV-1 capsid protein p24." Structure 8.10 (2000): 1069-1077. ***(1E6J structure related paper)*** --- ### <center>Join #steemSTEM</center> #steemSTEM is a community project with the goal to promote and support Science, Technology, Engineering and Mathematics on the STEEM blockchain. If you wish to support the #steemSTEM project you can: **Contribute STEM content using the #steemstem tag | Support steemstem authors | Join our curation trail | Join our [Discord community](https://discord.gg/mKSKQ7T) | Delegate SP to steemstem** #### <center>Convenient Delegation Links:</center> **<center> [50 SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=101913.0159%20VESTS) | [100SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=203826.0318%20VESTS) | [500SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=1019130.1592%20VESTS) | [1000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=2038258.3074%20VESTS) | [5000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=10191291.5921%20VESTS) | [10000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=20382581.1841%20VESTS) | [50000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=101912901.9206%20VESTS) </center>**</center> <center></center><center>Image courtesy: @elvisxx71</center> #### <center>And to steemSTEM beginners:</center> <center>You can ask for help in our discord page. There are people ready to help you.</center> <center>https://images-ext-2.discordapp.net/external/d5TwVdNGN3nrKO_X36gQF_FCrFjg6mQnwI4l488oXRk/https/steemitimages.com/DQmU7Xv1NnXmSE1MAYNN1eM6R5Xs2Cdtczp9DpaopmzopGE/rocket.gif</center><center>gif courtesy: @rocking-dave</center> --- **<center>All images without mentioning image sources are my creations or snapshots from the computer :)</center>** ## <center>Follow me @dexterdev</center> --- <center> ____ _______ ______ _________ ____ ______ / _ / __\ \//__ __/ __/ __/ _ / __/ \ |\ | | \| \ \ / / \ | \ | \/| | \| \ | | // | |_/| /_ / \ | | | /_| | |_/| /_| \// \____\____/__/\\ \_/ \____\_/\_\____\____\__/ </center>
author | dexterdev |
---|---|
permlink | visualizing-bio-molecules-in-computer-part-2-introduction-to-tcl-scripting-environment-in-vmd-1-sbd-prize-task-inside |
category | steemstem |
json_metadata | {"tags":["steemstem","science","visualization","busy","davinci-times"],"users":["elvisxx71","rocking-dave","dexterdev"],"image":["https://i.imgur.com/BkR2JSE.gif","https://i.imgur.com/A0LpQK7.png","https://i.imgur.com/9dBmbGj.png","https://i.imgur.com/1HjQcDF.png","https://i.imgur.com/gJd0Tbh.png","https://i.imgur.com/FBgM7Wt.png","https://i.imgur.com/WCx6T8Z.png","https://i.imgur.com/hej7GdM.png","https://i.imgur.com/3IjzCxS.png","https://i.imgur.com/sdG4gOu.png","https://i.imgur.com/Ya06oXn.jpg","https://images-ext-2.discordapp.net/external/d5TwVdNGN3nrKO_X36gQF_FCrFjg6mQnwI4l488oXRk/https/steemitimages.com/DQmU7Xv1NnXmSE1MAYNN1eM6R5Xs2Cdtczp9DpaopmzopGE/rocket.gif"],"links":["https://steemit.com/steemstem/@dexterdev/visualizing-bio-molecules-in-computer-part-1-let-us-inspect-a-pdb-file-and-see-it-using-vmd","http://www.ks.uiuc.edu/Research/vmd/vmd-1.7.1/ug/node30.html","http://www.ks.uiuc.edu/Research/vmd/vmd-1.9.1/ug.pdf","http://www.ks.uiuc.edu/Training/TutorialsOverview/vmd/vmd-tutorial.pdf","https://www.rcsb.org/pages/policies#References","https://discord.gg/mKSKQ7T","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=101913.0159%20VESTS","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=203826.0318%20VESTS","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=1019130.1592%20VESTS","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=2038258.3074%20VESTS","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=10191291.5921%20VESTS","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=20382581.1841%20VESTS","https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=steemstem&vesting_shares=101912901.9206%20VESTS"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-04-30 12:34:03 |
last_update | 2018-05-01 05:56:48 |
depth | 0 |
children | 5 |
last_payout | 2018-05-07 12:34:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 11.696 HBD |
curator_payout_value | 3.321 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,679 |
author_reputation | 17,771,704,061,240 |
root_title | "Visualizing bio-molecules in Computer[Part-2]: Introduction to Tcl scripting environment in VMD (1 SBD prize task inside)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,024,959 |
net_rshares | 2,437,303,776,306 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 75,982,917,738 | 0.02% | ||
lafona-miner | 0 | 140,325,200,983 | 5% | ||
kushed | 0 | 18,076,717,645 | 1% | ||
kevinwong | 0 | 38,447,440,636 | 0.15% | ||
justtryme90 | 0 | 861,704,172,094 | 40% | ||
anwenbaumeister | 0 | 24,647,481,836 | 1% | ||
liberosist | 0 | 6,710,172,198 | 1.1% | ||
arconite | 0 | 301,564,447 | 0.07% | ||
cmp2020 | 0 | 10,134,782,189 | 21% | ||
lemouth | 0 | 25,216,981,872 | 5% | ||
rjbauer85 | 0 | 309,080,845 | 5% | ||
anarchyhasnogods | 0 | 8,503,554,850 | 2.5% | ||
lamouthe | 0 | 1,315,978,183 | 5% | ||
meerkat | 0 | 50,186,561,723 | 1.1% | ||
curie | 0 | 46,071,805,977 | 1% | ||
cub1 | 0 | 33,128,421,843 | 21% | ||
hendrikdegrote | 0 | 516,027,101,501 | 1% | ||
steemstem | 0 | 139,487,052,505 | 5% | ||
sethroot | 0 | 53,889,854 | 0.1% | ||
foundation | 0 | 690,896,550 | 5% | ||
the-devil | 0 | 655,228,544 | 5% | ||
thevenusproject | 0 | 2,790,379,214 | 5% | ||
dna-replication | 0 | 1,402,184,464 | 5% | ||
cub2 | 0 | 50,209,154 | 100% | ||
pacokam8 | 0 | 84,989,132 | 0.25% | ||
borislavzlatanov | 0 | 429,528,359 | 5% | ||
alinabarbu | 0 | 218,139,181 | 0.1% | ||
jamhuery | 0 | 555,580,289 | 5% | ||
kryzsec | 0 | 1,399,868,796 | 5% | ||
markangeltrueman | 0 | 347,277,898 | 0.15% | ||
nedspeaks | 0 | 1,070,988,527 | 5% | ||
fredrikaa | 0 | 11,269,411,725 | 2.5% | ||
flurgx | 0 | 38,610,952,871 | 50% | ||
tantawi | 0 | 59,550,764 | 1% | ||
locikll | 0 | 423,472,786 | 2% | ||
dber | 0 | 1,807,178,382 | 5% | ||
aboutyourbiz | 0 | 210,930,121 | 1% | ||
kerriknox | 0 | 12,456,539,195 | 5% | ||
howtostartablog | 0 | 249,725,312 | 0.05% | ||
ghostgtr | 0 | 107,797,400 | 0.02% | ||
blessing97 | 0 | 169,787,337 | 5% | ||
ertwro | 0 | 2,068,336,429 | 5% | ||
coloringiship | 0 | 176,144,581 | 0.05% | ||
juanjdiaz89 | 0 | 181,010,854 | 5% | ||
thinknzombie | 0 | 1,568,289,063 | 0.5% | ||
nitesh9 | 0 | 1,251,693,649 | 5% | ||
fancybrothers | 0 | 599,577,844 | 1.5% | ||
churchboy | 0 | 847,776,987 | 5% | ||
himal | 0 | 385,451,605 | 5% | ||
ewuoso | 0 | 95,039,167 | 0.2% | ||
abigail-dantes | 0 | 85,248,097,717 | 5% | ||
leczy | 0 | 274,315,867 | 5% | ||
suravsingh | 0 | 66,028,941 | 5% | ||
misterakpan | 0 | 105,064,895 | 0.05% | ||
alexzicky | 0 | 24,691,213,628 | 50% | ||
mountain.phil28 | 0 | 2,615,366,652 | 25% | ||
akeelsingh | 0 | 188,192,590 | 5% | ||
zest | 0 | 7,321,201,890 | 20% | ||
felixrodriguez | 0 | 128,691,287 | 2.5% | ||
pearlumie | 0 | 1,977,742,646 | 5% | ||
gabox | 0 | 179,519,143 | 0.05% | ||
massivevibration | 0 | 3,535,391,975 | 5% | ||
onartbali | 0 | 755,723,688 | 5% | ||
crokkon | 0 | 37,357,702,946 | 100% | ||
clweeks | 0 | 60,610,315 | 0.4% | ||
torico | 0 | 332,520,866 | 0.08% | ||
ksolymosi | 0 | 1,123,079,235 | 5% | ||
simplifylife | 0 | 755,030,893 | 2.5% | ||
nalabra | 0 | 83,630,886 | 0.5% | ||
thatterrioguy | 0 | 50,000,820 | 0.75% | ||
mayowadavid | 0 | 295,609,477 | 2.5% | ||
erodedthoughts | 0 | 820,613,756 | 0.75% | ||
anevolvedmonkey | 0 | 2,216,912,834 | 100% | ||
enzor | 0 | 85,457,768 | 2.5% | ||
bobdos | 0 | 303,324,544 | 0.1% | ||
carloserp-2000 | 0 | 958,694,855 | 5% | ||
pangoli | 0 | 390,857,891 | 5% | ||
rachelsmantra | 0 | 214,559,082 | 5% | ||
gra | 0 | 1,696,362,380 | 5% | ||
aboutcoolscience | 0 | 56,886,705,134 | 50% | ||
physics.benjamin | 0 | 8,962,347,463 | 100% | ||
kenadis | 0 | 1,355,423,592 | 5% | ||
amavi | 0 | 780,859,306 | 1% | ||
robotics101 | 0 | 229,221,409 | 4% | ||
alexs1320 | 0 | 35,362,523,722 | 100% | ||
gentleshaid | 0 | 1,199,026,586 | 5% | ||
aamin | 0 | 61,155,797 | 2.5% | ||
sco | 0 | 207,337,225 | 0.5% | ||
dysfunctional | 0 | 241,069,654 | 2.5% | ||
monie | 0 | 456,258,106 | 100% | ||
mountainjewel | 0 | 117,878,431 | 0.1% | ||
mathowl | 0 | 274,424,168 | 5% | ||
wanderingdanish | 0 | 263,156,297 | 1% | ||
whileponderin | 0 | 2,255,974,135 | 100% | ||
thescholarlyowl | 0 | 206,109,411 | 2.5% | ||
bennettitalia | 0 | 99,408,672 | 0.05% | ||
hadji | 0 | 243,260,893 | 5% | ||
sakura1012 | 0 | 151,708,168 | 5% | ||
terrylovejoy | 0 | 1,082,548,382 | 3.5% | ||
rbm | 0 | 85,191,661 | 2.5% | ||
saunter-pl | 0 | 79,684,432 | 5% | ||
lesshorrible | 0 | 12,431,544,471 | 100% | ||
rionpistorius | 0 | 83,829,033 | 2.5% | ||
steem-hikers | 0 | 94,215,375 | 5% | ||
folken | 0 | 58,003,058 | 0.5% | ||
deutsch-boost | 0 | 417,310,992 | 20% | ||
dexterdev | 0 | 16,366,117,684 | 100% | ||
ugonma | 0 | 72,473,433 | 5% | ||
alexdory | 0 | 777,929,519 | 5% | ||
benleemusic | 0 | 1,404,770,233 | 0.05% | ||
chimtivers96 | 0 | 61,757,984 | 1% | ||
sissyjill | 0 | 75,850,729 | 7% | ||
positiveninja | 0 | 156,419,189 | 0.5% | ||
davinci.witness | 0 | 5,751,929,049 | 100% | ||
sathyasankar | 0 | 3,740,352,990 | 100% | ||
spederson | 0 | 93,413,698 | 4.5% | ||
theunlimited | 0 | 52,230,022 | 10% | ||
pseudojew | 0 | 1,680,928,534 | 100% | ||
effofex | 0 | 2,038,958,189 | 100% | ||
victorcovrig | 0 | 74,801,480 | 1% | ||
de-stem | 0 | 1,873,609,951 | 4% | ||
serylt | 0 | 863,334,253 | 4% | ||
davidrhodes124 | 0 | 3,828,136,930 | 100% | ||
apteacher | 0 | 77,981,328 | 1% | ||
chloroform | 0 | 330,563,815 | 5% | ||
davinci.polyglot | 0 | 330,393,813 | 100% | ||
ntowl | 0 | 106,529,294 | 0.3% | ||
temitayo-pelumi | 0 | 167,111,284 | 5% | ||
samidbarid | 0 | 2,849,876,227 | 100% | ||
doctor-cog-diss | 0 | 273,744,488 | 100% | ||
davinci.times | 0 | 12,723,074,531 | 100% | ||
itastem | 0 | 2,526,870,059 | 100% | ||
niouton | 0 | 129,169,308 | 0.4% | ||
star-vc | 0 | 51,983,817 | 5% | ||
davinci.art | 0 | 240,846,407 | 100% | ||
biomimi | 0 | 235,563,407 | 40% | ||
micro24 | 0 | 513,683,139 | 100% | ||
steem.curator | 0 | 702,125,445 | 1% | ||
ied | 0 | 602,048,745 | 100% | ||
beautifulplaces | 0 | 146,687,193 | 100% |
Hi @dexterdev We have selected your post as post of the day for our DaVinci Times. Our goal is to help the scientific community of Steemit, and even if our vote is still small we hope to grow in quickly! You will soon receive our sincere upvote! If you are interested in science follow us sto learn more about our project. <center>[](https://v2.steemconnect.com/sign/account-witness-vote?witness=davinci.witness&approve=1) <sub>Immagine CC0 Creative Commons, si ringrazia <a href="https://steemit.com/@mrazura">@mrazura</a> per il logo **ITASTEM**. **CLICK <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=davinci.witness&approve=1">HERE</a> AND VOTE FOR <a href="https://steemit.com/@davinci.witness">DAVINCI.WITNESS</a>**</sub></center> Keep in mind that for organizational reasons it’s necessary to use the “steemstem” and “davinci-times” tags to be voted again. Greetings from @davinci.witness and the itaSTEM team.
author | davinci.times |
---|---|
permlink | re-dexterdev-visualizing-bio-molecules-in-computer-part-2-introduction-to-tcl-scripting-environment-in-vmd-1-sbd-prize-task-inside-20180430t174202339z |
category | steemstem |
json_metadata | {"tags":["steemstem"],"users":["dexterdev","davinci.witness"],"image":["https://steemitimages.com/DQmUs8VCYpQY9r1UtWtzRmBZcgfw8YCZhZZ6gyeqHAomMV5/Prova4.jpg"],"links":["https://v2.steemconnect.com/sign/account-witness-vote?witness=davinci.witness&approve=1","https://steemit.com/@mrazura","https://steemit.com/@davinci.witness"],"app":"steemit/0.1"} |
created | 2018-04-30 17:42:03 |
last_update | 2018-04-30 17:42:03 |
depth | 1 |
children | 0 |
last_payout | 2018-05-07 17:42:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.416 HBD |
curator_payout_value | 0.098 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,054 |
author_reputation | 4,227,856,015,535 |
root_title | "Visualizing bio-molecules in Computer[Part-2]: Introduction to Tcl scripting environment in VMD (1 SBD prize task inside)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,077,878 |
net_rshares | 85,399,548,056 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rscalabrini | 0 | 23,226,011,572 | 100% | ||
aboutcoolscience | 0 | 57,572,087,124 | 50% | ||
dexterdev | 0 | 4,601,449,360 | 30% |
wow! Never though that a graphical view of molecule could look like piece of art. Just read the first part of this too. When i saw ur article title the thing came up to my mind is a structure of orbiting electrons as like our solar system. But these bio molecules are kind of smart in the molecular universe i guess. Jokes apart, the article is well written. Will definitely wait for the next dancing bio molecule. Cheers.
author | ied |
---|---|
permlink | re-dexterdev-visualizing-bio-molecules-in-computer-part-2-introduction-to-tcl-scripting-environment-in-vmd-1-sbd-prize-task-inside-20180430t183741435z |
category | steemstem |
json_metadata | {"tags":["steemstem"],"app":"steemit/0.1"} |
created | 2018-04-30 18:37:45 |
last_update | 2018-04-30 18:37:45 |
depth | 1 |
children | 2 |
last_payout | 2018-05-07 18:37:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 422 |
author_reputation | 1,278,083,500,889 |
root_title | "Visualizing bio-molecules in Computer[Part-2]: Introduction to Tcl scripting environment in VMD (1 SBD prize task inside)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,086,245 |
net_rshares | 4,601,449,360 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dexterdev | 0 | 4,601,449,360 | 30% |
Thank you for reading these articles. It's nice to know that there are people interested in these kind of work in steemit. I was doubtful initially to start these ones in steemit. But now I have hopes.😃
author | dexterdev |
---|---|
permlink | re-ied-re-dexterdev-visualizing-bio-molecules-in-computer-part-2-introduction-to-tcl-scripting-environment-in-vmd-1-sbd-prize-task-inside-20180430t190352222z |
category | steemstem |
json_metadata | {"tags":["steemstem"],"app":"steemit/0.1"} |
created | 2018-04-30 19:03:57 |
last_update | 2018-04-30 19:04:15 |
depth | 2 |
children | 1 |
last_payout | 2018-05-07 19:03:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 202 |
author_reputation | 17,771,704,061,240 |
root_title | "Visualizing bio-molecules in Computer[Part-2]: Introduction to Tcl scripting environment in VMD (1 SBD prize task inside)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,089,984 |
net_rshares | 602,048,745 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ied | 0 | 602,048,745 | 100% |
Surely its an interesting topic. I'm sure many other people haven't ever seen a dancing molecule before, as like me. So keep this up, man.
author | ied |
---|---|
permlink | re-dexterdev-re-ied-re-dexterdev-visualizing-bio-molecules-in-computer-part-2-introduction-to-tcl-scripting-environment-in-vmd-1-sbd-prize-task-inside-20180501t004906363z |
category | steemstem |
json_metadata | {"tags":["steemstem"],"app":"steemit/0.1"} |
created | 2018-04-30 20:49:21 |
last_update | 2018-04-30 20:49:21 |
depth | 3 |
children | 0 |
last_payout | 2018-05-07 20:49:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 138 |
author_reputation | 1,278,083,500,889 |
root_title | "Visualizing bio-molecules in Computer[Part-2]: Introduction to Tcl scripting environment in VMD (1 SBD prize task inside)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,104,952 |
net_rshares | 5,029,491,161 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dexterdev | 0 | 5,029,491,161 | 30% | ||
bartelby | 0 | 0 | 100% |
Amazing post! I love it. Hey UPVOTE my post: https://steemit.com/life/@cryptopaparazzi/chapter-one-let-there-be-the-man-and-there-was-a-man-let-there-be-a-woman-and-there-was-sex and FOLLOW ME and I ll do the same :)
author | steemboy9 |
---|---|
permlink | re-visualizing-bio-molecules-in-computer-part-2-introduction-to-tcl-scripting-environment-in-vmd-1-sbd-prize-task-inside-20180501t083650 |
category | steemstem |
json_metadata | "" |
created | 2018-05-01 08:36:51 |
last_update | 2018-05-01 08:36:51 |
depth | 1 |
children | 0 |
last_payout | 2018-05-08 08:36:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 216 |
author_reputation | -4,982,767,510,265 |
root_title | "Visualizing bio-molecules in Computer[Part-2]: Introduction to Tcl scripting environment in VMD (1 SBD prize task inside)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,194,170 |
net_rshares | -52,342,528,639 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mack-bot | 0 | -52,342,528,639 | -0.03% |