소스 검색

Fixed anomaly detection path

Andrew Kane 8 년 전
부모
커밋
c9674a5b32
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/blazer/result.rb

+ 1 - 1
lib/blazer/result.rb

@@ -129,7 +129,7 @@ module Blazer
       timestamps = []
       r_script = %x[which Rscript].chomp
       raise "R not found" if r_script.empty?
-      output = %x[#{r_script} --vanilla #{File.expand_path("../blazer/detect_anomalies.R", __FILE__)} #{Shellwords.escape(csv_str)}]
+      output = %x[#{r_script} --vanilla #{File.expand_path("../detect_anomalies.R", __FILE__)} #{Shellwords.escape(csv_str)}]
       if output.empty?
         raise "Unknown R error"
       end