Scripts for the bioinformatics analysis of platelet-enriched RNA of patients' blood under Mtb infection.
- Daniel Guevara
- Daniel Garbozo
- Diego Taquiri
- Carla Apaza
- Daniela Kirwan
- David Requena
- Mirko Zimic
- Robert H Gilman
- Jon Friedland
Fork the repository to create your own copy under your GitHub account.
Clone the forked repository to your local machine.
# Replace <your-username> with your GitHub username
git clone https://github.com/<your-username>/Platelets_TB.gitThis ensures you can keep your fork updated with changes from the original repository.
cd Platelets_TB
# Add the original repository as an upstream remote
git remote add upstream https://github.com/BigMindLab/Platelets_TB.gitBefore starting work, ensure your fork is up-to-date with the latest changes from the main branch.
# Fetch changes from the original repository
git fetch upstream
# Merge changes into your local main branch
git checkout main
git merge upstream/mainCreate a new branch for your changes. Use a descriptive name for the branch.
# Replace <branch-name> with a descriptive name for your branch
git checkout -b <branch-name>Push your local branch to your forked repository on GitHub.
# After making your changes
git add .
git commit -m "Brief description of your changes"
# Replace <branch-name> with your branch name
git push origin <branch-name>Go to the original repository on GitHub (BigMindLab/Platelets_TB).
- Click on the Pull Requests tab.
- Click New Pull Request.
- Select your branch as the source and the original repository's
mainbranch as the target. - Add a description of your changes and submit the pull request.
- If your pull request addresses a specific issue, reference the issue number in your description (e.g., "RIN threshold #42").
Thank you for contributing!