forked from prody/ProDy
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
180 changed files
with
1,270,772 additions
and
1,279 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,8 @@ __pycache__ | |
*.nmd | ||
*.pdb | ||
*.pdb.gz | ||
*.cif | ||
*.cif.gz | ||
|
||
# Docs | ||
/docs/_build/ | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,11 +72,11 @@ $ git commit -a | |
This command will open a text editor for you to describe the changes that you just committed. | ||
Push and Pull Request | ||
|
||
After you have committed your changes, you will need to push them to your Bitbucket account: | ||
After you have committed your changes, you will need to push them to your GitHub account: | ||
|
||
git push origin master | ||
|
||
This step will ask for your account user name. If you are going to push to your GitHub/Bitbucket account frequently, you may add an SSH key for automatic authentication. To add an SSH key for your system, go to Edit Your Profile ‣ SSH keys page on GitHub or Manage Account ‣ SSH keys page on Bitbucket. | ||
This step will ask for your account user name. If you are going to push to your GitHub account frequently, you may add an SSH key for automatic authentication. To add an SSH key for your system, go to Edit Your Profile ‣ SSH keys page on GitHub. | ||
|
||
After pushing your changes, you will need to make a pull request from your to notify ProDy developers of the changes you made and facilitate their incorporation to ProDy. | ||
Update Local Copy | ||
|
@@ -86,11 +86,6 @@ You can also keep an up-to-date copy of ProDy by pulling changes from the master | |
$ cd prody | ||
$ git remote add prodymaster [email protected]:abakan/ProDy.git | ||
|
||
or: | ||
|
||
$ cd prody | ||
$ git remote add prodymaster [email protected]:abakan/prody.git | ||
|
||
You may use any name other than prodymaster, but origin, which points to the ProDy fork in your account. | ||
|
||
After setting up this remote, calling git pull command will fetch latest changes from ProDy master repository and merge them to your local copy: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,10 +44,10 @@ creating a copy of the repository in your account. You will see | |
a link for this on ProDy_ source code page. You will have write access to | ||
this fork and later will use it share your changes with others. | ||
|
||
The next step is cloning the fork from your online account to your local | ||
The next step is cloning the fork from your online account (e.g. jamesmkrieger) to your local | ||
system. If you are not using the GitHub software, you can do it as follows:: | ||
|
||
$ git clone https://github.com/prody/ProDy.git | ||
$ git clone https://github.com/jamesmkrieger/ProDy.git | ||
|
||
This will create :file:`ProDy` folder with a copy of the project files in it:: | ||
|
||
|
@@ -117,15 +117,14 @@ Push and Pull Request | |
--------------------- | ||
|
||
After you have committed your changes, you will need to push them to your | ||
Bitbucket account:: | ||
GitHub account:: | ||
|
||
git push origin master | ||
|
||
This step will ask for your account user name. If you are going to push | ||
to your GitHub/Bitbucket account frequently, you may add an SSH key for | ||
to your GitHub account frequently, you may add an SSH key for | ||
automatic authentication. To add an SSH key for your system, go to | ||
:menuselection:`Edit Your Profile --> SSH keys` page on GitHub or | ||
:menuselection:`Manage Account --> SSH keys` page on Bitbucket. | ||
:menuselection:`Edit Your Profile --> SSH keys` page on GitHub. | ||
|
||
After pushing your changes, you will need to make a pull request from your | ||
to notify ProDy developers of the changes you made and facilitate their | ||
|
@@ -141,15 +140,10 @@ repository as a remote to your local copy. You can do this running the | |
following command from the ProDy project folder:: | ||
|
||
$ cd prody | ||
$ git remote add prodymaster [email protected]:abakan/ProDy.git | ||
|
||
or:: | ||
|
||
$ cd prody | ||
$ git remote add prodymaster [email protected]:abakan/prody.git | ||
$ git remote add prodymaster [email protected]:prody/ProDy.git | ||
|
||
|
||
You may use any name other than `prodymaster`, but `origin`, which points to | ||
You may use any name other than `prodymaster`, except for `origin`, which points to | ||
the ProDy fork in your account. | ||
|
||
After setting up this remote, calling :program:`git pull` command will | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
../docs | ||
ProDy/docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
ANM Application | ||
=============== | ||
|
||
.. automodule:: prody.apps.prody_apps.prody_clustenm | ||
:members: | ||
:undoc-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Interactions Tools | ||
====================== | ||
|
||
.. automodule:: prody.proteins.interactions | ||
:members: | ||
:undoc-members: |
Oops, something went wrong.