4 Commits

Author SHA1 Message Date
96a1e59daf Add 'rnaseq/step5_count/snippet_counts' 2021-02-12 15:54:26 +01:00
7ecbc2aee9 Template structure. 2021-02-09 11:20:27 +01:00
0dcd6ac858 Merge branch 'feature/drone-pipeline'
Some checks failed
continuous-integration/drone/push Build is failing
2019-12-12 18:00:15 +01:00
d28fafef27 Another try of drone 2019-12-12 18:00:01 +01:00
10 changed files with 39 additions and 6 deletions

View File

@ -4,9 +4,21 @@ type: docker
name: default
steps:
- name: lintr
image: jupyter/datascience-notebook
commands:
- Rscript -e 'devtools::install_github("jimhester/lintr")'
- Rscript -e 'lintr::lint_package()'
- name: lintr
image: jupyter/datascience-notebook
commands:
- export TAR="/bin/tar"
- Rscript -e 'devtools::install_github("jimhester/lintr")'
# 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
View File

@ -0,0 +1,3 @@
# RNAseq pipeline
Snippets for the RNAseq pipeline:
https://docs.google.com/document/d/1lM1wlz950Q8H6Oi7CWW28FO2tGv5nXYtW0wp8vEUizA

View File

View File

View File

View File

View File

View 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

View File

0
rnaseq/umi/snippet.pl Normal file
View File