-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.rmd
More file actions
executable file
·60 lines (32 loc) · 1.33 KB
/
README.rmd
File metadata and controls
executable file
·60 lines (32 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
### NOTE:
This package has been replaced by [ultraseq](https://github.com/flow-r/ultraseq). All future development and bug fixes will be in towards ultraseq.
ngsflows
----------------------------------------------------
This package host several wrappers for tools. While we have a few example workflows, they are still evolving and may change.
## List of modules
```{bash }
tree R
```
## Installation:
```r
install.packages('devtools')
library(devtools)
install_github(repo = 'ngsflows', username = 'flow-r')
```
## Downloading resource bundles.
Many of the above tools (like GATK, Mutect) require reference genome files.
These may be downloaded from [Illumina iGenomes](https://support.illumina.com/sequencing/sequencing_software/igenome.html) OR [Broad Insititute](https://www.broadinstitute.org/gatk/guide/article.php?id=1215) OR UCSC.
Due to extensive testing and tool availability its recommended to use the GATK's bundle for Homo Sapiens, for other we can use one from iGenomes.
We have a in built function to get genomes from Illumina (example below).
```
library(ngsflows)
fetch_genomes(species="Homo_sapiens")
################################################
Available Sources:
################################################
Ensembl
NCBI
UCSC
Example:
fetch_genomes species=Homo_sapiens src=NCBI build=build37.2
```