forked from galaxyproject/training-material
-
Notifications
You must be signed in to change notification settings - Fork 0
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
46 changed files
with
1,397 additions
and
481 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -86,6 +86,15 @@ abueg: | |
orcid: 0000-0002-6879-3954 | ||
joined: 2022-01 | ||
|
||
adairama: | ||
name: Adaikalavan Ramasamy | ||
email: [email protected] | ||
orcid: 0000-0002-7598-2892 | ||
linkedin: adairama | ||
joined: 2024-12 | ||
location: | ||
country: SG | ||
|
||
ahmedhamidawan: | ||
name: Ahmed Hamid Awan | ||
email: [email protected] | ||
|
@@ -921,6 +930,15 @@ gmauro: | |
- uni-freiburg | ||
- elixir-europe | ||
|
||
GokceOGUZ: | ||
name: Gokce Oguz | ||
joined: 2024-12 | ||
email: [email protected] | ||
orcid: 0000-0003-1044-7204 | ||
linkedin: gokce-oguz | ||
location: | ||
country: SG | ||
|
||
guerler: | ||
name: Aysam Guerler | ||
joined: 2017-09 | ||
|
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
title: How do I add my community to the Galaxy CoDex? | ||
box_type: tip | ||
layout: faq | ||
contributors: [bebatut, nomadscientist] | ||
--- | ||
|
||
You need to create a new folder in the `data/community` folder within [Galaxy Codex code source](https://github.com/galaxyproject/galaxy_codex). | ||
|
||
> <hands-on-title>Create a folder for your community</hands-on-title> | ||
> | ||
> 1. If not already done, fork the [Galaxy Codex repository](https://github.com/galaxyproject/galaxy_codex) | ||
> 2. Go to the `communities` folder | ||
> 3. Click on **Add file** in the drop-down menu at the top | ||
> 4. Select **Create a new file** | ||
> 5. Fill in the `Name of your file` field with: name of your community + `metadata/categories` | ||
> | ||
> This will create a new folder for your community and add a categories file to this folder. | ||
> | ||
{: .hands_on} |
File renamed without changes
File renamed without changes
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
title: "Forking the GTN repository" | ||
area: github | ||
box_type: tip | ||
layout: faq | ||
contributors: [hexylena, shiltemann] | ||
--- | ||
|
||
- Go on the GitHub repository: [github.com/galaxyproject/training-material](https://github.com/galaxyproject/training-material){: width="50%"} | ||
- Click on the **Fork** button (top-right corner of the page) | ||
|
||
![The fork button on GitHub]({% link topics/contributing/images/PR_fork.jpg %}) | ||
|
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,29 @@ | ||
--- | ||
title: "Updating the default branch from master to main" | ||
area: github | ||
box_type: tip | ||
layout: faq | ||
contributors: [hexylena, shiltemann] | ||
--- | ||
|
||
If you created your fork a long time ago, the default branch on your fork may still be called **master** instead of **main** | ||
|
||
1. Point your browser to your fork of the GTN repository | ||
- The url will be `https://github.com/<your username>/training_material` (replacing <your username> with your GitHub username) | ||
|
||
2. Check the default branch that is shown (at top left). | ||
|
||
![Github with the top bar of a repository shown, including the button for 'Sync Fork']({% link topics/contributing/images/github_update_fork.png %}) | ||
|
||
|
||
3. Does it say `main`? | ||
- Congrats, nothing to do, **you can skip the rest of these steps** | ||
|
||
4. Does it say `master`? Then you need to update it, following the instructions below | ||
|
||
5. Go to your fork's settings (Click on the gear icon called "Settings") | ||
6. Find "Branches" on the left | ||
7. If it says master you can click on the ⇆ icon to switch branches. | ||
8. Select `main` (it may not be present). | ||
9. If it isn't present, use the pencil icon to rename `master` to `main`. | ||
|
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,20 @@ | ||
--- | ||
title: "Syncing your Fork of the GTN" | ||
area: github | ||
box_type: tip | ||
layout: faq | ||
contributors: [hexylena, shiltemann] | ||
--- | ||
|
||
Whenever you want to contribute something new to the GTN, it is important to start with an up-to-date branch. To do this, you should always update the main branch of your fork, before creating a so-called *feature branch*, a branch where you make your changes. | ||
|
||
1. Point your browser to your fork of the GTN repository | ||
- The url will be `https://github.com/<your username>/training_material` (replacing 'your username' with your GitHub username) | ||
|
||
2. You might see a message like "This branch is 367 commits behind galaxyproject/training-material:main." as in the screenshot below. | ||
|
||
![Github with the top bar of a repository shown, including the button for 'Sync Fork']({% link topics/contributing/images/github_update_fork.png %}) | ||
|
||
3. Click the **Sync Fork** button on your fork to update it to the latest version. | ||
|
||
4. **TIP:** never work directly on your main branch, since that will make the sync process more difficult. Always create a new branch before committing your changes. |
Oops, something went wrong.