anncrsnp 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b49a4c171dac690e9c33215c3ad7ce265583feba
4
- data.tar.gz: 864cc1ee837cc96db41c7940ba2c048f7e4f6c34
3
+ metadata.gz: ddb348f3aa472df429ca3e2f2db94ee82230bb9d
4
+ data.tar.gz: 6372089b9eb4bd7892aa7a4af23a06530c87a8ce
5
5
  SHA512:
6
- metadata.gz: edf8ff3d825c2b12d4b232eb8a206860d94280b0a3e84fde97bd36481f9af5de210ce10d334cacf1f5baa3ccb24517fb51833c95527dbf57f0a14a21fae0879d
7
- data.tar.gz: c4cc14d9a5ed2af88bb618404348fc8c8a559c665b06e2320f1011e14dc947a862fad8187171d52a69b2e9512cf0f9954d839a7835cb62009725fea27e636d6d
6
+ metadata.gz: eead26436f1943add592c34d7a96b8692e859a5b9a293663c7d91ed3ed8e7e79ac2d993e0063d7c57289dc7d48766dd01e5faec447ecec13e51d67d345a91b59
7
+ data.tar.gz: d27329b3f4ed3762b365ef87e19a46f0808fb0543c527c6a45d4daf37ce1b8333285789cead68a5523dbadaa02d5c91e6e1d544cf831cc129a74d9dd3690aa25
data/README.md CHANGED
@@ -7,6 +7,47 @@ The user can mine the local database, searching information about SNPs that over
7
7
  If you use this tool, please cite us: Rojano E, Ranea JA, Perkins JR. Characterisation of non-coding genetic variation in histamine receptors using AnNCR-SNP. Amino Acids. 2016 Jun 6. DOI: 10.1007/s00726-016-2265-5.
8
8
 
9
9
  ## Installation
10
+ ### Linux (Ubuntu) & Mac
11
+
12
+ If you have no Ruby installed, we recommend you to install Ruby using RVM:
13
+
14
+ $ gpg2 --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
15
+
16
+ If this command doesn't work, try:
17
+
18
+ $ command curl -sSL https://rvm.io/mpapis.asc | gpg2 --import -
19
+
20
+ Then type:
21
+
22
+ $ \curl -sSL https://get.rvm.io | bash -s stable
23
+ $ source /home/user/.profile
24
+
25
+ Check that the file ~/.bashrc contains this line at the end, if not ruby won't be recognized:
26
+ [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
27
+
28
+ Then execute:
29
+
30
+ $ rvm install 2.1.1
31
+
32
+ At this point, you can install the ruby gem:
33
+
34
+ $ gem install anncrsnp
35
+
36
+ For further RVM installation, please visit https://rvm.io/
37
+
38
+ ### Windows
39
+
40
+ If you have no Ruby installed, we recommend you to install Ruby using RubyInstaller (http://rubyinstaller.org/downloads/). Check before your Windows version.
41
+
42
+ During the installation, you have to mark all available options before continuing (Install Td/Tk support, Add Ruby executables to your PATH, Associate .rb and .rbw files with this Ruby installation).
43
+
44
+ Then, install the package directly as:
45
+
46
+ $ gem install anncrsnp
47
+
48
+ For further RubyInstaller information, please visit http://rubyinstaller.org/
49
+
50
+
10
51
 
11
52
  Install the package directly as:
12
53
 
@@ -20,7 +61,7 @@ The user can query the local database using a list of SNPs or genomic coordinate
20
61
 
21
62
  An example of use can be the following:
22
63
 
23
- $ grdbfinder.rb n rs2470893,rs12049351 -g snpDbSnp -F 200 -o output_file -f txt
64
+ $ grdbfinder.rb -n rs2470893,rs12049351 -g snpDbSnp -F 200 -o output_file -f txt
24
65
 
25
66
  Where:
26
67
 
@@ -1,3 +1,3 @@
1
1
  module Anncrsnp
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anncrsnp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elena Rojano
@@ -117,7 +117,6 @@ files:
117
117
  - bin/masterfeatures.rb
118
118
  - bin/setup
119
119
  - bin/statistics.rb
120
- - database/deleteme
121
120
  - lib/anncrsnp.rb
122
121
  - lib/anncrsnp/dataset.rb
123
122
  - lib/anncrsnp/parsers/ucscparser.rb
data/database/deleteme DELETED
File without changes