Bioinformatics Programming
How to commit changes to GitHub repository using vs code?

In this article, we are providing a few commands that are used to commit changes to GitHub repositories using VS code terminal.
Committing changes for the first time
For committing changes for the first time, follow these steps:
- Open VS code –> go to Terminal.
- Clone your GitHub repository.
Go to your desired directory where you want to clone the repository and paste the following command:
$ git clone <url-to-repository>
- Now make all changes you want.
- After that, run the following command:
$ git add .
Here, the dot (.) refers to all folders. - Now, commit changes with a message:
$ git commit -m "write something here"
- Push all changes to the repository.
$ git push
- Now, refresh your GitHub repository, you will be able to see all changes there.
Committing further changes
If you have already committed any changes before, then you don’t need to clone your repository again. Make changes and then commit and push as shown above.
Bioinformatics Programming
Extracting first and last residue from helix file in DSSP format.
Bioinformatics Programming
How to extract x,y,z coordinates of atoms from PDB file?

The x, y, and z coordinates of atoms are provided in the PDB file. One way to extract them is by using the Biopython package [1]. In this article, we will extract coordinates of C-alpha atoms for each residue from the PDB file using Biopython. (more…)
Bioinformatics Programming
dssp_parser: A new Python package to extract helices from DSSP files.

A new Python package named ‘dssp_parser‘ is developed to parse DSSP files. This package fetches all helices including long and short ones from DSSP files. (more…)
You must be logged in to post a comment Login