Skip to content

Commit e6b7d1c

Browse files
authored
Merge pull request #53 from GregFa/main
Fixed test and updated struct functions
2 parents 782ce16 + c0d9c28 commit e6b7d1c

File tree

10 files changed

+706
-529
lines changed

10 files changed

+706
-529
lines changed

Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ julia = "1"
2929

3030
[extras]
3131
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
32+
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
3233
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3334

3435
[targets]
35-
test = ["DelimitedFiles", "Test"]
36+
test = ["DelimitedFiles", "Plots", "Test"]

src/BigRiverQTL.jl

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ module BigRiverQTL
77

88
using Reexport
99
@reexport import BigRiverQTLPlots: plot_QTL, plot_eQTL, plot_manhattan
10+
@reexport import BulkLMM: scan
1011

1112

1213
########
@@ -54,15 +55,20 @@ module BigRiverQTL
5455
# Structure #
5556
#############
5657
include("struct/datastructure.jl")
57-
export Gmap, Alleles, CrossType, GenoType, GenoTranspose,Geno, Pmap, Pheno, Phenocov, IsFemale, IsXChar, CrossInfo
58+
export Gmap, Alleles, CrossType, GenoType, GenoTranspose, Geno, Pmap
59+
export Pheno, Phenocov, IsFemale, IsXChar, CrossInfo
5860
export GeneticStudyData
5961

6062
######
6163
# IO #
6264
######
6365
include("io/io_utils.jl")
66+
export get_control_file, encode_genotype
6467
include("io/export_to_type.jl")
6568
export get_geneticstudydata
69+
export get_gmap, get_alleles, get_chromosome, get_crossinfo, get_crosstype
70+
export get_geno, get_genotype, get_genotranspose, get_pmap
71+
export get_phenocovar, get_pheno, get_isxchar
6672

6773
#########
6874
# Plots #
@@ -76,7 +82,6 @@ module BigRiverQTL
7682
include("plots/plots_manhattan.jl")
7783
export plot_manhattan
7884

79-
8085
include("plots/plots_eqtl.jl")
8186
export plot_eQTL
8287

0 commit comments

Comments
 (0)