Skip to content

Commit

Permalink
Rename test-resources' path
Browse files Browse the repository at this point in the history
  • Loading branch information
totakke committed Apr 25, 2014
1 parent 9857b10 commit 8edaead
Show file tree
Hide file tree
Showing 15 changed files with 11 additions and 11 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/cljam/t_cli.clj
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
(fact "about pileup"
;; NB: "pileup" output format may change in future (maybe)
(with-out-file temp-out (cli/pileup [test-sorted-bam-file])) => anything
;(slurp temp-out) => (slurp "test/resources/t_cli.pileup")
;(slurp temp-out) => (slurp "test-resources/t_cli.pileup")
))

(with-state-changes [(before :facts (do (prepare-cache!)
Expand Down
20 changes: 10 additions & 10 deletions test/cljam/t_common.clj
Original file line number Diff line number Diff line change
Expand Up @@ -57,33 +57,33 @@

;; ### SAM files

(def test-sam-file "test/resources/test.sam")
(def test-sam-file "test-resources/test.sam")

;; ### BAM files

(def test-bam-file "test/resources/test.bam")
(def test-sorted-bam-file "test/resources/test.sorted.bam")
(def medium-bam-file "test/resources/medium.bam")
(def test-bam-file "test-resources/test.bam")
(def test-sorted-bam-file "test-resources/test.sorted.bam")
(def medium-bam-file "test-resources/medium.bam")
(def large-bam-file (cavia/resource mycavia "large.bam"))

;; ### BAM index files

(def test-bai-file "test/resources/test.sorted.bam.bai")
(def test-bai-file "test-resources/test.sorted.bam.bai")
(def test-large-bai-file (cavia/resource mycavia "large.bai"))

;; ### FASTA files

(def test-fa-file "test/resources/test.fa")
(def medium-fa-file "test/resources/medium.fa")
(def test-fa-file "test-resources/test.fa")
(def medium-fa-file "test-resources/medium.fa")

;; ### FASTA index files

(def test-fai-file "test/resources/test.fa.fai")
(def medium-fai-file "test/resources/medium.fa.fai")
(def test-fai-file "test-resources/test.fa.fai")
(def medium-fai-file "test-resources/medium.fa.fai")

;; ### TABIX files

(def test-tabix-file "test/resources/test.gtf.gz.tbi")
(def test-tabix-file "test-resources/test.gtf.gz.tbi")
(def test-large-tabix-file (cavia/resource mycavia "large.tbi"))

(def test-sam
Expand Down

0 comments on commit 8edaead

Please sign in to comment.