Skip to content

Commit 514af08

Browse files
committed
Update README.md
1 parent 62cebaf commit 514af08

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ set_view(\
3838
```
3939

4040
### Solution:
41-
The function `roundview()` in the script [`roundview.py`](.\roundview.py) which is available from this website.
41+
the function `roundview()` in the script [`roundview.py`](.\roundview.py) which is available from this website.
4242

4343
```py
4444
PyMOL>roundview
@@ -47,10 +47,10 @@ set_view(-0.83,0.4,0.38,-0.26,-0.89,0.36,0.49,0.2,0.85,0.0,0.0,-61.4,-46.25,-4.6
4747

4848
Paste the above reformated [`set_view()`](http://pymolwiki.org/index.php/Set_View) command onto the PyMOL [command line](http://pymolwiki.org/index.php/Command_Line_Options) in the external gui or into a [script](http://www.pymolwiki.org/index.php/Running_Scripts) in a plain text editor.
4949

50-
What this is
51-
--------------------------------------------------------------------------------
50+
###What is the roundview() function?
51+
5252

53-
The python script roundview.py includes the short function `roundview()` that reformats the viewing port settings from seven rows to one row. The more compact format from roundview() is easy to copy and paste onto the command line. Other commands that are separated by semicolons can be added to the command line along with the settings. This defines a horiontal script. The script can include commnents that are isolated by semicolons. The horizontal script can be edited and tested repeatedly within PyMOL for many cycles without using an external text editor. This saves time during the development of a new molecular scene. The cursor can be moved around quickly on the command line with the readline commands:
53+
The Python script roundview.py includes the function `roundview()` that reformats the viewing port settings from seven rows to one row. The more compact format from roundview() is easy to copy and paste onto the command line. Other commands that are separated by semicolons can be added to the command line along with the settings. This defines a horiontal script. The script can include commnents that are isolated by semicolons. The horizontal script can be edited and tested repeatedly within PyMOL for many cycles without using an external text editor. This saves time during the development of a new molecular scene. The cursor can be moved around quickly on the command line with the readline commands:
5454

5555
* **cntrl-a** moves cursor to the beginning of the line
5656
* **cntrl-e** moves cursor to the end of the line
@@ -73,10 +73,9 @@ We tried to make the code backward compatible to PyMOL 1.5. We do not gaurantee
7373
code works with earlier versions of PyMOL. Nor do we guarantee that the code will
7474
not fail in future versions of PyMOL. In PyMOL version 1.6, there were
7575
several changes that reduced backward compatibility. We also do not guarantee that
76-
the code will work if you install in a way that is different from the methods that we describe here.
76+
the code will work if you install in a way that is different from the methods that we describe below.
7777

78-
Instructions
79-
--------------------------------------------------------------------------------
78+
###Instructions
8079

8180
#### Quick start instructions for beginning users of Github
8281

@@ -85,7 +84,7 @@ Watch this 1 minute video or read on.
8584
[![IMAGE ALT TEXT HERE](http://img.youtube.com/vi/watch?v=GnRtEhGvPBQ/0.jpg)](http://www.youtube.com/watch?v=GnRtEhGvPBQ)
8685

8786

88-
Copy script from [this link](https://github.com/MooersLab/EasyPyMOL/blob/master/roundview.py) after clicking on "RAW" in the upper right corner and paste into a plain text file (NOT a doc, docx, or rtf file). Name the script [`roundview.py`](./roundview.py). Save to your home directory (e.g., /Users/username or /home/username or C:\Users\username). Start PyMOL. Check that PyMOL's current directory is in the home directory by entering the "pwd" command on the command line in PyMOL. Check for presence of roundview.py with "ls *.py".
87+
Copy script from [this link](https://github.com/MooersLab/EasyPyMOL/blob/master/roundview.py) after clicking on "RAW" in the upper right corner and paste into a plain text file (NOT a doc, docx, or rtf file). Name the script [`roundview.py`](./roundview.py). Save the file to your home directory (e.g., /Users/username or /home/username or C:\Users\username). Start PyMOL. Check that PyMOL's current directory is the home directory by entering "pwd" on the command line in PyMOL. Check for presence of roundview.py by entering "ls *.py" on the command line in PyMOL.
8988

9089
```shell
9190
ls *.py
@@ -108,7 +107,7 @@ Which looks easier to copy from the command history window and paste onto the co
108107

109108
#### More advanced ways to install roundview.py
110109

111-
Get the script. Either download the folder from [this link](https://github.com/MooersLab/EasyPyMOL/archive/master.zip) or type the following command in a terminal window in your home directory or the directory where you store your PyMOL python scripts
110+
Get the script. Either download the folder from [this link](https://github.com/MooersLab/EasyPyMOL/archive/master.zip) or type the following command in a terminal window in your home directory or the directory where you store your PyMOL Python scripts
112111

113112
```shell
114113
git clone https://github.com/MooersLab/EasyPyMOL.git

0 commit comments

Comments
 (0)