From 45db9746952977bd979d4a01062498c3eb095960 Mon Sep 17 00:00:00 2001 From: George Tollefson Date: Thu, 18 Apr 2019 16:07:07 -0400 Subject: [PATCH] test(fixedTestForSelect_Columns()): fixed test for select_columns() which was changed for a bug fix 2 commits ago --- README.md | 2 +- test/new_vcf_utils.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9bbb1b8..5715194 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Note: Once you have set up VIVA, you can quickly run the command line tool [EXAM ### Supported Operating Systems: -macOS ( Sierra, High Sierra, and Mojave ), Windows, and Linux +macOS ( Sierra, High Sierra, and Mojave ), Windows, and Linux. Expected Time for Installation: Installation time depends on your network bandwidth, but should take less than 10 minutes for VIVA installation to install all dependency packages. Installing and using Julia packages for the first time takes longer than when using them in subsequent sessions. diff --git a/test/new_vcf_utils.jl b/test/new_vcf_utils.jl index 9a0bc49..25b9914 100644 --- a/test/new_vcf_utils.jl +++ b/test/new_vcf_utils.jl @@ -248,7 +248,7 @@ dp_num_array,dp_chromosome_labels=combined_all_read_depth_array_functions(sub) dp_num_array=select_columns("test_files/select_samples_list.txt", dp_num_array, sample_names) #println("select_columns dp_num_array type is $(typeof(dp_num_array))") #println("select_columns dp_num_array size is $(size(dp_num_array,1))") - @test typeof(dp_num_array) == Tuple{Array{Int64,2},Array{Any,1}} + @test typeof(dp_num_array) == Tuple{Array{Int64,2},Array{Any,2}} @test size(dp_num_array,1) == 2 end