mutations_caller_pipeline 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'mutations_caller_pipeline'
4
+ MutationsCallerPipeline.hi
@@ -0,0 +1,10 @@
1
+ class MutationsCallerPipeline
2
+ def self.hi
3
+ "Hello World!"
4
+ end
5
+ end
6
+
7
+ require "mutations_caller_pipeline/bwa_caller"
8
+ require "mutations_caller_pipeline/gatk_caller"
9
+ require "mutations_caller_pipeline/samtools_indexing"
10
+ require "mutations_caller_pipeline/location_file"
@@ -0,0 +1,24 @@
1
+ require 'test/unit'
2
+ require 'mutations_caller_pipeline'
3
+
4
+ class MutationsCallerPipelineTest < Test::Unit::TestCase
5
+ def test_hi
6
+ assert_equal "Hello World!", MutationsCallerPipeline.hi
7
+ end
8
+
9
+ def test_bwa_caller
10
+
11
+ end
12
+
13
+ def test_samtools_indexing
14
+
15
+ end
16
+
17
+ def test_gatk_caller
18
+
19
+ end
20
+
21
+ def test_create_location_file
22
+
23
+ end
24
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mutations_caller_pipeline
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -14,10 +14,14 @@ dependencies: []
14
14
  description: Using BWA to align and GATK to call the bases
15
15
  email:
16
16
  - katharinaehayer@gmail.com
17
- executables: []
17
+ executables:
18
+ - mutations_caller_pipeline
18
19
  extensions: []
19
20
  extra_rdoc_files: []
20
- files: []
21
+ files:
22
+ - lib/mutations_caller_pipeline.rb
23
+ - test/test_mutations_caller_pipeline.rb
24
+ - bin/mutations_caller_pipeline
21
25
  homepage: https://github.com/khayer/mutations_caller_pipeline
22
26
  licenses: []
23
27
  post_install_message:
@@ -42,4 +46,5 @@ rubygems_version: 1.8.15
42
46
  signing_key:
43
47
  specification_version: 3
44
48
  summary: Call Mutations for files.fq
45
- test_files: []
49
+ test_files:
50
+ - test/test_mutations_caller_pipeline.rb