pets 0.2.5 → 0.2.7

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -0
  3. data/lib/pets/version.rb +1 -1
  4. data/pets.gemspec +1 -1
  5. metadata +12 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0f1d5c3ad0cb57b26b2c67e02b38a282139965472ded083acf0d1fcae48c0fec
4
- data.tar.gz: 8b34f2440afe74f0b9c0e6024c2a05daee4a7be0efd0c6a3d80aef49673c7c7a
3
+ metadata.gz: 5a5fd89d1a74e50c86ad0ae92c38c741d9ef9c36b2319bc2a81beefef5941f71
4
+ data.tar.gz: e4af5d0fa513c908b87ab043d6a83384bbd3b66fdfa4ae12f2c39a4730390349
5
5
  SHA512:
6
- metadata.gz: d3e9bc8559bb3f3e0c9a7ce1e0658645f54afc83fc49e7415cc3177576af975e4f7268a1f37e017d83fd88042197f102a4290cc29d7b0a16e12ec4964feea39d
7
- data.tar.gz: a2aa8fe161b52d2f3e86e0d04f2a1a762298de95582098e553287ad905ff7b97eae6f96893de8bd78676c01b412a16973b1b53cf6ebbd9cb48e49c929c7f1d74
6
+ metadata.gz: 528217e755e73d453ef628bd986b2a4988f6e51fd91fc574b409a4b110ba4855e7e1ed726053ea7b2d6e50fcf4ddeb25bdd750f3868e8ebbb0606e4cbbe38fd9
7
+ data.tar.gz: 322761e846ca7c8d9dd57726a5ef87f7acb6566294a94284ab9163d15c2ecc16d81989525b85fb2d9a7b5750fbabe1ccba5f27cd1c47592ca12180d4fa50bc39
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # PETS
2
2
 
3
+ DEPRECATED PROJECT. MIGRATED TO [python PETS](https://github.com/seoanezonjic/pets)
4
+
3
5
  PETS (Patient Exploration Tools Suite) include three different tools for the analysis of cohorts of patients with pathological phenotypes described in terms of the Human Phenotype Ontology (HPO) and the position their genomic variants clinically determined.
4
6
 
5
7
  It can (1) determine the quality of information within a patient cohort with Cohort Analyzer (coPatReporter.rb); (2) associate genomic regions with their pathological phenotypes based on the cohort data with Reg2Phen (reg2phen.rb), and (3) predict the possible genetic variants that cause the clinically observed pathological phenotypes using phenotype-genotype association values with Phen2Reg (phen2reg.rb).
data/lib/pets/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Pets
2
- VERSION = "0.2.5"
2
+ VERSION = "0.2.7"
3
3
  end
data/pets.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["elenarojano@uma.es, seoanezonjic@uma.es"]
11
11
 
12
12
  spec.summary = %q{Suite with predictive tools.}
13
- spec.description = %q{PETS suite includes three different tools. CohortAnalyzer performs the calculation of several statistics that gives an overview of a cohort of patients to analyse. Reg2Phen uses associations between pathological phenotypes and regions of the genome (these associations can be calculated from the cohort of patients if they include genotypic & phenotypic information using NetAnalyzer, another Ruby gem) to find, for a given genomic region, which pathological phenotypes have been associated with that region. The third tool, Phen2Reg, is a predictor that using the same associations as Reg2Phen, predicts which genomic regions can be the cause of a list of pathological phenotypes observed in a patient.}
13
+ spec.description = %q{DEPRECATED PROJECT. MIGRATED TO PYTHON: https://github.com/seoanezonjic/pets. PETS suite includes three different tools. CohortAnalyzer performs the calculation of several statistics that gives an overview of a cohort of patients to analyse. Reg2Phen uses associations between pathological phenotypes and regions of the genome (these associations can be calculated from the cohort of patients if they include genotypic & phenotypic information using NetAnalyzer, another Ruby gem) to find, for a given genomic region, which pathological phenotypes have been associated with that region. The third tool, Phen2Reg, is a predictor that using the same associations as Reg2Phen, predicts which genomic regions can be the cause of a list of pathological phenotypes observed in a patient.}
14
14
  spec.homepage = "https://bitbucket.org/elenarojano/reg2phen/src/master/bin/reg2phen.rb"
15
15
  spec.license = "MIT"
16
16
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elena Rojano, Pedro Seoane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-04 00:00:00.000000000 Z
11
+ date: 2025-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -220,15 +220,16 @@ dependencies:
220
220
  - - ">="
221
221
  - !ruby/object:Gem::Version
222
222
  version: '0'
223
- description: PETS suite includes three different tools. CohortAnalyzer performs the
224
- calculation of several statistics that gives an overview of a cohort of patients
225
- to analyse. Reg2Phen uses associations between pathological phenotypes and regions
226
- of the genome (these associations can be calculated from the cohort of patients
227
- if they include genotypic & phenotypic information using NetAnalyzer, another Ruby
228
- gem) to find, for a given genomic region, which pathological phenotypes have been
229
- associated with that region. The third tool, Phen2Reg, is a predictor that using
230
- the same associations as Reg2Phen, predicts which genomic regions can be the cause
231
- of a list of pathological phenotypes observed in a patient.
223
+ description: 'DEPRECATED PROJECT. MIGRATED TO PYTHON: https://github.com/seoanezonjic/pets.
224
+ PETS suite includes three different tools. CohortAnalyzer performs the calculation
225
+ of several statistics that gives an overview of a cohort of patients to analyse.
226
+ Reg2Phen uses associations between pathological phenotypes and regions of the genome
227
+ (these associations can be calculated from the cohort of patients if they include
228
+ genotypic & phenotypic information using NetAnalyzer, another Ruby gem) to find,
229
+ for a given genomic region, which pathological phenotypes have been associated with
230
+ that region. The third tool, Phen2Reg, is a predictor that using the same associations
231
+ as Reg2Phen, predicts which genomic regions can be the cause of a list of pathological
232
+ phenotypes observed in a patient.'
232
233
  email:
233
234
  - elenarojano@uma.es, seoanezonjic@uma.es
234
235
  executables: