Skip to content

Commit

Permalink
test bash
Browse files Browse the repository at this point in the history
  • Loading branch information
xieguigang committed Oct 12, 2016
1 parent 6aa96a6 commit bddf726
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ManhattanPlot/Program.vb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 9 additions & 0 deletions example/test.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit bddf726

Please sign in to comment.