viral_seq 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +9 -21
- data/lib/viral_seq/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5b0346834449c6a4830597469c0c8ba59cd2bea07fa06ad01a7c415da06b81f
|
4
|
+
data.tar.gz: f5a8db77ad4c6c3bcb2e266d7929dbfa64bbc041b5bfd2063368b9d566065705
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6272a2cd99b6e788c056f82f17b3bd2f6718ddbc8584ff2c3f044a984995d44010d9ed2299c5a2455381473e3e0f79fd2b7852aa70d27742e13edfec88a1ebd
|
7
|
+
data.tar.gz: c8d755c9d463cd8eabb5401011244f48a8470071945b8a0dc75438efaa9858a2ae220fbf749923c2accb06987f99023f857d64e4678845025cad8e4f8101418c
|
data/README.md
CHANGED
@@ -1,34 +1,22 @@
|
|
1
1
|
# viral_seq
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
Add this line to your application's Gemfile:
|
6
|
-
|
7
|
-
```ruby
|
8
|
-
gem 'ViralSeq'
|
9
|
-
```
|
10
|
-
|
11
|
-
And then execute:
|
12
|
-
|
13
|
-
$ bundle
|
3
|
+
A Ruby Gem containing bioinformatics tools for processing viral NGS data.
|
4
|
+
Specifically for Primer-ID sequencing and HIV drug resistance analysis.
|
14
5
|
|
15
|
-
|
6
|
+
## Installation
|
16
7
|
|
17
8
|
$ gem install viral_seq
|
18
9
|
|
19
10
|
## Usage
|
20
11
|
|
21
|
-
|
22
|
-
|
23
|
-
## Development
|
12
|
+
Load all ViralSeq classes by requiring 'viral_seq.rb'
|
24
13
|
|
25
|
-
|
14
|
+
#!/usr/bin/env ruby
|
15
|
+
require 'viral_seq'
|
26
16
|
|
27
|
-
|
28
|
-
|
29
|
-
## Contributing
|
17
|
+
## Development
|
30
18
|
|
31
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
19
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/ViralSeq/viral_seq. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
32
20
|
|
33
21
|
## License
|
34
22
|
|
@@ -36,4 +24,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
36
24
|
|
37
25
|
## Code of Conduct
|
38
26
|
|
39
|
-
Everyone interacting in the viral_seq project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
27
|
+
Everyone interacting in the viral_seq project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/ViralSeq/viral_seq/blob/master/CODE_OF_CONDUCT.md).
|
data/lib/viral_seq/version.rb
CHANGED