Compare commits
4 Commits
37bde351e1
...
p280381-fe
Author | SHA1 | Date | |
---|---|---|---|
96a1e59daf | |||
|
7ecbc2aee9 | ||
|
0dcd6ac858 | ||
|
d28fafef27 |
16
.drone.yml
16
.drone.yml
@@ -7,6 +7,18 @@ steps:
|
|||||||
- name: lintr
|
- name: lintr
|
||||||
image: jupyter/datascience-notebook
|
image: jupyter/datascience-notebook
|
||||||
commands:
|
commands:
|
||||||
|
- export TAR="/bin/tar"
|
||||||
- Rscript -e 'devtools::install_github("jimhester/lintr")'
|
- Rscript -e 'devtools::install_github("jimhester/lintr")'
|
||||||
- Rscript -e 'lintr::lint_package()'
|
# Lint the document, printing output.
|
||||||
|
- |
|
||||||
|
Rscript -e 'lintr::lint_dir(
|
||||||
|
path=".", pattern=rex::rex(".", one_of("Rr"), maybe("md"), end)
|
||||||
|
)'
|
||||||
|
# Return non-zero exit code (no output is printed).
|
||||||
|
- |
|
||||||
|
Rscript -e 'quit(
|
||||||
|
save="no",
|
||||||
|
status=length(
|
||||||
|
lintr::lint_dir(path=".", pattern=rex::rex(".", one_of("Rr"), maybe("md"), end))
|
||||||
|
)
|
||||||
|
)'
|
||||||
|
3
rnaseq/README.md
Normal file
3
rnaseq/README.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# RNAseq pipeline
|
||||||
|
Snippets for the RNAseq pipeline:
|
||||||
|
https://docs.google.com/document/d/1lM1wlz950Q8H6Oi7CWW28FO2tGv5nXYtW0wp8vEUizA
|
0
rnaseq/step1_fastqc/snippet.sh
Normal file
0
rnaseq/step1_fastqc/snippet.sh
Normal file
0
rnaseq/step2_trim/snippet.sh
Normal file
0
rnaseq/step2_trim/snippet.sh
Normal file
0
rnaseq/step3_align/snippet.sh
Normal file
0
rnaseq/step3_align/snippet.sh
Normal file
0
rnaseq/step4_multiqc/snippet.sh
Normal file
0
rnaseq/step4_multiqc/snippet.sh
Normal file
0
rnaseq/step5_count/snippet.sh
Normal file
0
rnaseq/step5_count/snippet.sh
Normal file
18
rnaseq/step5_count/snippet_counts
Normal file
18
rnaseq/step5_count/snippet_counts
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
## Generate Raw Counts using FeatureCounts/HTSeqCounts
|
||||||
|
|
||||||
|
## Load package Subread (packge within which FeatureCounts is present)
|
||||||
|
|
||||||
|
+ ml Subread/1.6.4-foss-2015b FeatureCounts
|
||||||
|
|
||||||
|
## Features used in FeatureCounts :
|
||||||
|
## -s : reversely stranded
|
||||||
|
## -T : number of threads used
|
||||||
|
## -a : reference genome
|
||||||
|
## -o : output file
|
||||||
|
|
||||||
|
+ featureCounts \
|
||||||
|
+ --a "path to reference genome" \
|
||||||
|
+ --T 6 \
|
||||||
|
+ --o "path to output file" \
|
||||||
|
+ --s 2
|
||||||
|
|
0
rnaseq/step6_overall_QC/snippet.R
Normal file
0
rnaseq/step6_overall_QC/snippet.R
Normal file
0
rnaseq/umi/snippet.pl
Normal file
0
rnaseq/umi/snippet.pl
Normal file
Reference in New Issue
Block a user