Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
custom
Lidonnici_NatureComm2025
Commits
63324d0a
Commit
63324d0a
authored
Feb 18, 2025
by
Matteo Barcella
Browse files
Update README.md
parent
debd9cb7
Changes
1
Hide whitespace changes
Inline
Side-by-side
bulkRNAseq/README.md
View file @
63324d0a
**Bulk RNAseq**
data analysis workflow includes the following steps:
1.
Quality control by
[
FastQC
](
https://www.bioinformatics.babraham.ac.uk/projects/fastqc/
)
2.
Trimming of bad quality reads with
[
TrimGalore
](
https://www.bioinformatics.babraham.ac.uk/projects/trim_galore/
)
3.
Alignment with
[
STAR
](
https://github.com/alexdobin/STAR
)
<details><summary>
Running command
</summary>
"STAR " +
"--runThreadN {threads} " +
"--genomeDir {input.genome} " +
"--readFilesIn {params.trim_seq} " +
"--outSAMstrandField intronMotif " +
"--outFileNamePrefix {params.aln_seq_prefix} " +
"--outSAMtype BAM SortedByCoordinate " +
"--outSAMmultNmax 1 " +
"--outFilterMismatchNmax 10 " +
"--outReadsUnmapped Fastx " +
"--readFilesCommand zcat "
</details>
4.
Gene expression quantification with
[
FeatureCounts
](
https://academic.oup.com/bioinformatics/article/30/7/923/232889
)
<details><summary>
Running command
</summary>
"featureCounts " +
"-a {input.annot} " +
"-o {output.fcount} " +
"-g gene_name " +
"-p -B -C " +
"-s {params.strand} " +
"--minOverlap 10 " +
"-T {threads} " +
"{input.bams} "
</details>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment