-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Adding a new page for STAR alignment #93
base: main
Are you sure you want to change the base?
Conversation
STAR requires a genome index to efficiently align reads. Submit the following command in your SLURM script to generate it: | ||
|
||
```bash | ||
module load STAR/version_number |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make the use of version_number as a variable more explicit
module load STAR/version_number | |
module load STAR/<version_number> | |
# Replace <version_number> with the desired version, e.g., module load STAR/2.7.9a |
### Single-End Reads Example: | ||
|
||
```bash | ||
module load STAR/version_number |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make the use of version_number as a variable more explicit
module load STAR/version_number | |
module load STAR/<version_number> | |
# Replace <version_number> with the desired version, e.g., module load STAR/2.7.9a |
### Paired-End Reads Example: | ||
|
||
```bash | ||
module load STAR/version_number |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make the use of version_number as a variable more explicit
module load STAR/version_number | |
# Replace <version_number> with the desired version, e.g., module load STAR/2.7.9a |
|
||
Create a text file listing all your sample FASTQ file pairs, with one sample per line. For paired-end data, include both files separated by a space, like this: | ||
|
||
**`samples.txt`:** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Assuming there is supposed to be a file here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move content from the other STAR.md to here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move content to docs/disciplines/Bioinformatics/STAR.md and delete
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good work! Just need some changes
@PeterHHer can you please review these changes |
Created md file