cheripic 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: e478cb23cd45fd1287db7a7452a9320d9ade3722
4
+ data.tar.gz: 750333da30358c7a0d45a4927af00e0ae9cf3c33
5
+ SHA512:
6
+ metadata.gz: c7ec71513ff241e04b37d29ff0deb07b9cae44c815cb7ca7ce9bc8b437a5969e5784faf0028799c23b0067fd6bc19256adb292932a72f4a91545e5c9e3b2c72a
7
+ data.tar.gz: afac635b2e3df32c0bc7a20d28794d49226492cbfafaff9e95004bb9405c6f1c693404e1b97ef8c740bf341c231bfae66d9a4d98982905cb942d833185900156
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ .idea
11
+
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.1
4
+ before_install: gem install bundler -v 1.10.6
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in cheripic.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Shyam Rallapalli
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # Cheripic
2
+
3
+ [![Build Status](https://travis-ci.org/shyamrallapalli/cheripic.svg?branch=master)](https://travis-ci.org/shyamrallapalli/cheripic)
4
+ [![Coverage Status](https://coveralls.io/repos/github/shyamrallapalli/cheripic/badge.svg?branch=master)](https://coveralls.io/github/shyamrallapalli/cheripic?branch=master)
5
+
6
+
7
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/cheripic`. To experiment with that code, run `bin/console` for an interactive prompt.
8
+
9
+ TODO: Delete this and the text above, and describe your gem
10
+
11
+ ## Installation
12
+
13
+ Add this line to your application's Gemfile:
14
+
15
+ ```ruby
16
+ gem 'cheripic'
17
+ ```
18
+
19
+ And then execute:
20
+
21
+ $ bundle
22
+
23
+ Or install it yourself as:
24
+
25
+ $ gem install cheripic
26
+
27
+ ## Usage
28
+
29
+ TODO: Write usage instructions here
30
+
31
+ ## Development
32
+
33
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
34
+
35
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
36
+
37
+ ## Contributing
38
+
39
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/cheripic. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
40
+
41
+
42
+ ## License
43
+
44
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
45
+
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :test
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "cheripic"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
data/cheripic.gemspec ADDED
@@ -0,0 +1,36 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'cheripic/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'cheripic'
8
+ spec.version = Cheripic::VERSION
9
+ spec.authors = ['Shyam Rallapalli']
10
+ spec.email = ['ghanasyam.rallapalli@tsl.ac.uk']
11
+
12
+ spec.summary = %q{picks causative mutation from bulks segregant sequencing}
13
+ spec.description = %q{a library and commandline tool to pick causative mutation from bulks segregant sequencing}
14
+ spec.homepage = 'https://github.com/shyamrallapalli/cheripic'
15
+ spec.license = 'MIT'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = 'exe'
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ['lib']
21
+
22
+ spec.add_dependency 'yell', '~> 2.0.5'
23
+ spec.add_dependency 'trollop', '~> 2.1.2'
24
+ spec.add_dependency 'bio', '~> 1.5.0'
25
+ # spec.add_dependency 'bio-samtools', '~> 2.3.3'
26
+ # spec.add_dependency 'bio-gngm', '~> 0.2.1'
27
+ spec.add_dependency 'rinruby', '~> 2.0.3'
28
+
29
+ spec.add_development_dependency 'bundler', '~> 1.10'
30
+ spec.add_development_dependency 'rake', '~> 10.0'
31
+ spec.add_development_dependency 'minitest'
32
+ spec.add_development_dependency 'minitest-reporters', '>= 1.0.17'
33
+ spec.add_development_dependency 'simplecov', '>= 0.8.2'
34
+ spec.add_development_dependency 'shoulda', '>= 3.5.0'
35
+ spec.add_development_dependency 'coveralls', '>= 0.7.2'
36
+ end
@@ -0,0 +1,206 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ module Cheripic
4
+
5
+ class Cmd
6
+
7
+ require 'trollop'
8
+ require 'pathname'
9
+ require 'ostruct'
10
+
11
+ def initialize (args)
12
+ @options = OpenStruct.new
13
+ @options = parse_arguments (args)
14
+ check_arguments
15
+ end
16
+
17
+ def parse_arguments (args)
18
+ Trollop::with_standard_exception_handling argument_parser do
19
+ if args.empty? || args.include?('-h') || args.include?('--help')
20
+ raise Trollop::HelpNeeded
21
+ elsif args.include?('--examples')
22
+ print_examples
23
+ end
24
+ argument_parser.parse args
25
+ end
26
+ end
27
+
28
+ def argument_parser
29
+ cmds = self
30
+ Trollop::Parser.new do
31
+ banner cmds.help_message
32
+ opt :assembly, 'Assembly file in FASTA format',
33
+ :short => '-f',
34
+ :type => String
35
+ opt :input_format, 'bulk and parent alignment file format types - set either pileup or bam',
36
+ :short => '-F',
37
+ :type => String,
38
+ :default => 'pileup'
39
+ opt :mut_bulk, 'Pileup or sorted BAM file alignments from mutant/trait of interest bulk 1',
40
+ :short => '-a',
41
+ :type => String
42
+ opt :bg_bulk, 'Pileup or sorted BAM file alignments from background/wildtype bulk 2',
43
+ :short => '-b',
44
+ :type => String
45
+ opt :output, 'Directory to store results, will be created if not existing',
46
+ :default => 'cheripic_results'
47
+ opt :loglevel, 'Choose any one of "info / warn / debug" level for logs generated',
48
+ :default => 'info'
49
+ opt :hmes_adjust, 'factor added to snp count of each contig to adjust for hme score calculations',
50
+ :type => Float,
51
+ :default => 0.5
52
+ opt :htlow, 'lower level for categorizing heterozygosity',
53
+ :type => Float,
54
+ :default => 0.2
55
+ opt :hthigh, 'high level for categorizing heterozygosity',
56
+ :type => Float,
57
+ :default => 0.9
58
+ opt :mindepth, 'minimum read depth to conisder a position for variant calls',
59
+ :type => Integer,
60
+ :default => 6
61
+ opt :min_non_ref_count, 'minimum read depth supporting non reference base at each position',
62
+ :type => Integer,
63
+ :default => 3
64
+ opt :min_indel_count_support, 'minimum read depth supporting an indel at each position',
65
+ :type => Integer,
66
+ :default => 3
67
+ opt :ignore_reference_n, 'ignore variant calls at N (completely ambigous) bases in the reference',
68
+ :type => FalseClass,
69
+ :default => true
70
+ opt :mapping_quality, 'minimum mapping quality of read covering the position',
71
+ :short => '-q',
72
+ :type => Integer,
73
+ :default => 20
74
+ opt :base_quality, 'minimum base quality of bases covering the position',
75
+ :short => '-Q',
76
+ :type => Integer,
77
+ :default => 15
78
+ opt :noise, 'praportion of reads for a variant to conisder as noise',
79
+ :type => Float,
80
+ :default => 0.1
81
+ opt :cross_type, 'type of cross used to generated mapping population - back or out',
82
+ :type => String,
83
+ :default => 'back'
84
+ opt :only_frag_with_vars, 'select only contigs containing variants for analysis',
85
+ :type => FalseClass,
86
+ :default => true
87
+ opt :filter_out_low_hmes, 'ignore variants from contigs with low hmescore or bfr to list in the final output',
88
+ :type => FalseClass,
89
+ :default => true
90
+ opt :polyploidy, 'Set if the data input is from polyploids',
91
+ :type => FalseClass,
92
+ :default => false
93
+ opt :mut_parent, 'Pileup or sorted BAM file alignments from mutant/trait of interest parent',
94
+ :short => '-p',
95
+ :type => String,
96
+ :default => ''
97
+ opt :bg_parent, 'Pileup or sorted BAM file alignments from background/wildtype parent',
98
+ :short => '-r',
99
+ :type => String,
100
+ :default => ''
101
+ opt :br_adjust, 'factor added to hemi snp frequency of each parent to adjust for bfr calculations',
102
+ :type => Float,
103
+ :default => 0.05
104
+ opt :examples, 'shows some example commands with explanation'
105
+ end
106
+ end
107
+
108
+ def help_message
109
+ <<-EOS
110
+
111
+ Cheripic v#{Cheripic::VERSION.dup}
112
+ Authors: Shyam Rallapalli and Dan MacLean
113
+
114
+ Description: Candidate mutation and closely linked marker selection for non reference genomes
115
+ Uses bulk segregant data from non-reference sequence genomes
116
+
117
+ Inputs:
118
+ 1. Needs a reference fasta file of asssembly use for variant analysis
119
+ 2. Pileup files for mutant (phenotype of interest) bulks and background (wildtype phenotype) bulks
120
+ 3. If polyploid species, include of pileup from one or both parents
121
+
122
+ USAGE:
123
+ cheripic <options>
124
+
125
+ OPTIONS:
126
+
127
+ EOS
128
+ end
129
+
130
+ def print_examples
131
+ msg = <<-EOS
132
+
133
+ Cheripic v#{Cheripic::VERSION.dup}
134
+
135
+ EXAMPLE COMMANDS:
136
+
137
+ EOS
138
+ puts msg.split("\n").map{ |line| line.lstrip }.join("\n")
139
+ exit(0)
140
+ end
141
+
142
+ def check_arguments
143
+ check_output
144
+ check_loglevel
145
+ check_inputfiles
146
+ end
147
+
148
+ # def check_input_types
149
+ # if @options.input_format == 'vcf'
150
+ #
151
+ # end
152
+ # end
153
+
154
+ def check_inputfiles
155
+ if @options.polyploidy
156
+ inputfiles = %i{assembly mut_bulk bg_bulk mut_parent bg_parent}
157
+ else
158
+ inputfiles = %i{assembly mut_bulk bg_bulk}
159
+ end
160
+ inputfiles.each do | symbol |
161
+ if @options[symbol]
162
+ file = @options[symbol]
163
+ @options[symbol] = File.expand_path(file)
164
+ unless File.exist?(file)
165
+ raise CheripicIOError.new "#{symbol} file, #{file} does not exist: "
166
+ end
167
+ else
168
+ raise CheripicArgError.new "Options #{inputfiles}, all must be specified. " +
169
+ 'Try --help for help.'
170
+ end
171
+ end
172
+ end
173
+
174
+ def check_output
175
+ if Dir.exist?(@options.output)
176
+ raise CheripicArgError.new "#{@options.output} directory exists" +
177
+ 'please choose a different output directory name'
178
+ end
179
+ end
180
+
181
+ def check_loglevel
182
+ unless %w(error info warn debug).include?(@options.loglevel)
183
+ raise CheripicArgError.new "Loglevel #{@options.loglevel} is not valid. " +
184
+ 'It must be one of: error, info, warn, debug.'
185
+ end
186
+ logger.level = Yell::Level.new @options.loglevel.to_sym
187
+ end
188
+
189
+ # def run
190
+ # @options.output = File.expand_path @options.output
191
+ # FileUtils.mkdir_p @options.output
192
+ # Dir.chdir @options.output
193
+ # analyse_bulks
194
+ # end
195
+ #
196
+ # def analyse_bulks
197
+ # assembly = @options.assembly
198
+ # logger.info "Loading assembly: #{assembly}"
199
+ # # a = Assembly.new assembly
200
+ # logger.info "Analysing assembly: #{assembly}"
201
+ #
202
+ # end
203
+
204
+ end # Cmd
205
+
206
+ end # Cheripic
@@ -0,0 +1,3 @@
1
+ module Cheripic
2
+ VERSION = '0.1.0'
3
+ end
data/lib/cheripic.rb ADDED
@@ -0,0 +1,25 @@
1
+ require 'cheripic/cmd'
2
+ require 'cheripic/version'
3
+
4
+ # set up a golbal logger object to access across module
5
+ require 'yell'
6
+ module Cheripic
7
+
8
+ # custom error handling
9
+ class CheripicError < StandardError; end
10
+ class CheripicIOError < CheripicError; end
11
+ class CheripicArgError < CheripicError; end
12
+
13
+ # Define a logger and pass `Object` as name.
14
+ # Yell adds this logger to the repository where you can access it later on.
15
+ format = Yell::Formatter.new('[%5L] %d : %m', '%Y-%m-%d %H:%M:%S')
16
+ Yell.new(:format => format) do |l|
17
+ l.level = :info
18
+ l.name = Object
19
+ l.adapter STDOUT, level: [:debug, :info, :warn]
20
+ l.adapter STDERR, level: [:error, :fatal]
21
+ end
22
+ # Enable logging for the class that (almost) every Ruby class inherits from
23
+ Object.send :include, Yell::Loggable
24
+
25
+ end # Cheripic
metadata ADDED
@@ -0,0 +1,212 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cheripic
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Shyam Rallapalli
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-05-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: yell
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 2.0.5
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 2.0.5
27
+ - !ruby/object:Gem::Dependency
28
+ name: trollop
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 2.1.2
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 2.1.2
41
+ - !ruby/object:Gem::Dependency
42
+ name: bio
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.5.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.5.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: rinruby
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 2.0.3
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 2.0.3
69
+ - !ruby/object:Gem::Dependency
70
+ name: bundler
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.10'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.10'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rake
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '10.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '10.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: minitest
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: minitest-reporters
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: 1.0.17
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: 1.0.17
125
+ - !ruby/object:Gem::Dependency
126
+ name: simplecov
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: 0.8.2
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: 0.8.2
139
+ - !ruby/object:Gem::Dependency
140
+ name: shoulda
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: 3.5.0
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: 3.5.0
153
+ - !ruby/object:Gem::Dependency
154
+ name: coveralls
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: 0.7.2
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: 0.7.2
167
+ description: a library and commandline tool to pick causative mutation from bulks
168
+ segregant sequencing
169
+ email:
170
+ - ghanasyam.rallapalli@tsl.ac.uk
171
+ executables: []
172
+ extensions: []
173
+ extra_rdoc_files: []
174
+ files:
175
+ - ".gitignore"
176
+ - ".travis.yml"
177
+ - CODE_OF_CONDUCT.md
178
+ - Gemfile
179
+ - LICENSE.txt
180
+ - README.md
181
+ - Rakefile
182
+ - bin/console
183
+ - bin/setup
184
+ - cheripic.gemspec
185
+ - lib/cheripic.rb
186
+ - lib/cheripic/cmd.rb
187
+ - lib/cheripic/version.rb
188
+ homepage: https://github.com/shyamrallapalli/cheripic
189
+ licenses:
190
+ - MIT
191
+ metadata: {}
192
+ post_install_message:
193
+ rdoc_options: []
194
+ require_paths:
195
+ - lib
196
+ required_ruby_version: !ruby/object:Gem::Requirement
197
+ requirements:
198
+ - - ">="
199
+ - !ruby/object:Gem::Version
200
+ version: '0'
201
+ required_rubygems_version: !ruby/object:Gem::Requirement
202
+ requirements:
203
+ - - ">="
204
+ - !ruby/object:Gem::Version
205
+ version: '0'
206
+ requirements: []
207
+ rubyforge_project:
208
+ rubygems_version: 2.4.6
209
+ signing_key:
210
+ specification_version: 4
211
+ summary: picks causative mutation from bulks segregant sequencing
212
+ test_files: []