From bddf7262a3265faf56599b2ea4a6c7a6aabf7460 Mon Sep 17 00:00:00 2001 From: xieguigang Date: Thu, 13 Oct 2016 00:24:14 +0800 Subject: [PATCH] test bash --- ManhattanPlot/Program.vb | 4 ++-- example/test.sh | 9 +++++++++ 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 example/test.sh diff --git a/ManhattanPlot/Program.vb b/ManhattanPlot/Program.vb index d398746..19e720c 100644 --- a/ManhattanPlot/Program.vb +++ b/ManhattanPlot/Program.vb @@ -20,13 +20,13 @@ It gains its name from the similarity of such a plot to the Manhattan skyline: a Module Program Sub New() - Dim template As String = App.HOME & "/Template.csv" + Dim template As String = App.HOME & "/Templates/Template.csv" If Not template.FileExists Then Call {New SNP}.SaveTo(template) End If - template = App.HOME & "/SampleColors.csv" + template = App.HOME & "/Templates/SampleColors.csv" If Not template.FileExists Then Call {New SampleColor}.SaveTo(template) End If diff --git a/example/test.sh b/example/test.sh new file mode 100644 index 0000000..3141d2a --- /dev/null +++ b/example/test.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +rm ./manhattan_plot_test_chr.png +rm ./manhattan_plot_test_interval.png +rm ./manhattan_plot_test_SampleName.png + +../ManhattanPlot.exe /Draw /in "./manhattan_plot_test.csv" /pt.size 10 /sampleColors "./SampleColors.csv" /colorpattern SampleName +../ManhattanPlot.exe /Draw /in "./manhattan_plot_test.csv" /pt.size 10 /colorpattern chr +../ManhattanPlot.exe /Draw /in "./manhattan_plot_test.csv" /pt.size 10 /colorpattern interval \ No newline at end of file