-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(mergeupdates): merge new features, functions, and passing tests
- Loading branch information
Showing
19 changed files
with
1,873 additions
and
527 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
*.html | ||
.DS_Store | ||
.ipynb_checkpoints/ | ||
output | ||
Manifest.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name = "VIVA" | ||
uuid = "d7f9f8fa-e687-11e8-2c0b-eb4ab256ef6a" | ||
authors = ["George Tollefson <[email protected]>"] | ||
version = "0.0.1" | ||
|
||
[deps] | ||
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63" | ||
Blink = "ad839575-38b3-5650-b840-f874b8c74a25" | ||
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" | ||
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab" | ||
GeneticVariation = "9bc6ac9d-e6b2-5f70-b0a8-242a01662520" | ||
ORCA = "47be7bcc-f1a6-5447-8b36-7eeeff7534fd" | ||
PlotlyJS = "f0f68f2c-4968-5e81-91da-67840de0976a" | ||
Rsvg = "c4c386cf-5103-5370-be45-f3a111cca3b8" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[compat] | ||
julia = ">=0.7" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[semantic_release] | ||
version_variable=Project.toml:version | ||
upload_to_pypi=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
module VIVA | ||
|
||
using DataFrames | ||
using PlotlyJS | ||
using ORCA | ||
using Rsvg | ||
using Blink | ||
using GeneticVariation | ||
using ArgParse | ||
using DelimitedFiles | ||
using Test | ||
|
||
#using Base.Filesystem | ||
|
||
#include("vcf_utils.jl") | ||
#include("plot_utils.jl") | ||
|
||
#end #module | ||
|
||
#= | ||
const g_white = "400" #homo reference 0/0 | ||
const g_red = "800" #homo variant 1/1 1/2 2/2 1/3 2/3 3/3 4/4 5/5 6/6 etc | ||
const g_pink = "600" #hetero variant 0/1 1/0 0/2 2/0 etc | ||
const g_blue = "0" #no call ./. | ||
=# | ||
|
||
export | ||
format_reader, | ||
load_vcf, | ||
clean_column1!, | ||
genotype_cell_searcher_maf_correction, | ||
genotype_cell_searcher, | ||
dp_cell_searcher, | ||
load_siglist, | ||
sig_list_vcf_filter, | ||
chromosome_range_vcf_filter, | ||
load_sort_phenotype_matrix, | ||
reorder_columns, | ||
select_columns, | ||
genotype_heatmap2, | ||
dp_heatmap2, | ||
avg_sample_dp_scatter, | ||
avg_variant_dp_line_chart, | ||
read_depth_threshhold, | ||
list_variant_positions_low_dp, | ||
list_sample_names_low_dp, | ||
avg_dp_variant, | ||
avg_dp_samples, | ||
jupyter_main, | ||
save_numerical_array, | ||
io_pass_filter, | ||
io_sig_list_vcf_filter, | ||
io_chromosome_range_vcf_filter, | ||
generate_genotype_array, | ||
define_geno_dict, | ||
translate_genotype_to_num_array, | ||
translate_readdepth_strings_to_num_array, | ||
genotype_heatmap_with_groups, | ||
jupyter_main_new, | ||
returnXY_column1!, | ||
pass_chrrange_siglist_filter, | ||
pass_chrrange_filter, | ||
pass_siglist_filter, | ||
chrrange_siglist_filter, | ||
get_sample_names, | ||
sortcols_by_phenotype_matrix, | ||
find_group_label_indices, | ||
checkfor_outputdirectory, | ||
combined_all_genotype_array_functions, | ||
combined_all_read_depth_array_functions, | ||
combined_all_read_depth_array_functions_for_avg_dp, | ||
generate_chromosome_positions_for_hover_labels, | ||
clean_column1_chr, | ||
clean_column1_siglist!, | ||
process_plot_inputs, | ||
process_plot_inputs_for_grouped_data, | ||
returnXY_column1_siglist!, | ||
chromosome_label_generator, | ||
add_pheno_matrix_to_gt_data_for_plotting, | ||
add_pheno_matrix_to_dp_data_for_plotting, | ||
generate_hover_text_array, | ||
generate_hover_text_array_grouped, | ||
save_graphic | ||
|
||
#include("vcf_utils.jl") | ||
include("vcf_utils_complete.jl") | ||
include("plot_utils.jl") | ||
include("new_notebook_utils.jl") | ||
#include("v1_VIVA_notebook_utils.jl") | ||
#include("io_filters.jl") | ||
|
||
end # module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.