You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`BigRiverQTL.jl` is a user-friendly Julia package that supports efficient and interpretable quantitative trait locus (QTL) analysis. This comprehensive toolbox encompasses three core components tailored to streamline the entire QTL analysis workflow: preprocessing, genomic scanning, and result visualization.
10
+
`BigRiverQTL.jl` is a user-friendly Julia package that supports
11
+
efficient and interpretable quantitative trait locus (QTL)
12
+
analysis. This comprehensive toolbox encompasses three core components
13
+
tailored to streamline the entire QTL analysis workflow:
14
+
preprocessing, genomic scanning, and result visualization.
8
15
9
-
-**Preprocessing:** The preprocessing functions are designed to seamlessly import and convert genomic data into an efficient and memory-conservative format. This component also offers function capabilities for quickly calculating kinship matrices, ensuring data readiness for subsequent analysis phases.
16
+
-**Preprocessing:** The preprocessing functions are designed to
17
+
seamlessly import and convert genomic data into an efficient and
18
+
memory-conservative format. This component also offers function
19
+
capabilities for quickly calculating kinship matrices, ensuring data
20
+
readiness for subsequent analysis phases.
10
21
11
-
-**Genomic Scanning:**`BigRiverQTL.jl` provides advanced genomic scanning capabilities through `BulkLMM.jl` for swift single-trait scans, which surpass other methods in terms of computational speed. For analyses involving multiple traits, the package employs `FlxQTL.jl`, a cutting-edge approach that detects complex trait interrelations.
scanning capabilities through `BulkLMM.jl` for swift single-trait
24
+
scans, which surpass other methods in terms of computational
25
+
speed. For analyses involving multiple traits, the package employs
26
+
`FlxQTL.jl`, a cutting-edge approach that detects complex trait
27
+
interrelations.
12
28
13
-
-**Result Visualization:** The third component of `BigRiverQTL.jl` enriches the analytical experience by offering plotting tools designed to illustrate the outcomes of genomic scans. The plotting functions are useful for interpreting the results and aid in the derivation of meaningful conclusions
29
+
-**Result Visualization:** The third component of `BigRiverQTL.jl`
30
+
enriches the analytical experience by offering plotting tools
31
+
designed to illustrate the outcomes of genomic scans. The plotting
32
+
functions are useful for interpreting the results and aid in the
33
+
derivation of meaningful conclusions
14
34
15
35
16
36
## Installation
17
-
To install `BigRiverQTL.jl`, you can use Julia's package manager. Here is the command:
37
+
38
+
To install `BigRiverQTL.jl`, you can use Julia's package manager. Here
39
+
is the command:
18
40
19
41
```julia
20
42
using Pkg
@@ -24,61 +46,78 @@ Pkg.add("BigRiverQTL")
24
46
25
47
26
48
## Contribution
27
-
Contributions to BigRiverQTL.jl are welcome and appreciated. If you'd like to contribute, please fork the repository and make changes as you'd like. If you have any questions or issues, feel free to open an
28
49
50
+
Contributions to BigRiverQTL.jl are welcome and appreciated. If you
51
+
would like to contribute, please fork the repository, make your
52
+
changes, and send us a pull request. If you have a question or think
53
+
you have found a bug, please open an issue.
29
54
30
-
## Examples
31
-
```julia
32
-
using Pkg
33
-
Pkg.activate("../")
34
-
```
35
55
56
+
# Example QTL
57
+
___
36
58
37
-
```julia
38
-
using Revise
39
-
```
59
+
This example is also available as a
60
+
[notebook](example/example_qtl.ipynb) in the 'example' directory.
61
+
62
+
## Data
63
+
64
+
In this example, we will use a dataset available from the `R/qtl2`
65
+
package. Specifically, we will use the BXD dataset, which is obtained
66
+
from the [GeneNetwork](https://genenetwork.org/) website.
67
+
68
+
You can download the BXD genotype data from the following link:
0 commit comments