test-patient-generator 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +15 -0
- data/Rakefile +18 -0
- data/lib/test-patient-generator.rb +18 -0
- data/lib/tpg/ext/coded.rb +40 -0
- data/lib/tpg/ext/conjunction.rb +23 -0
- data/lib/tpg/ext/data_criteria.rb +159 -0
- data/lib/tpg/ext/derivation_operator.rb +49 -0
- data/lib/tpg/ext/population_criteria.rb +12 -0
- data/lib/tpg/ext/precondition.rb +23 -0
- data/lib/tpg/ext/range.rb +144 -0
- data/lib/tpg/ext/record.rb +6 -0
- data/lib/tpg/ext/subset_operator.rb +7 -0
- data/lib/tpg/ext/temporal_reference.rb +66 -0
- data/lib/tpg/ext/value.rb +112 -0
- data/lib/tpg/generation/exporter.rb +118 -0
- data/lib/tpg/generation/generator.rb +169 -0
- data/lib/tpg/generation/randomizer.rb +255 -0
- data/public/cda.xsl +1 -2
- metadata +66 -0
metadata
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: test-patient-generator
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Adam Goldstein
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-11-01 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: A utility to generate patients for unit testing clinical quality measure
|
15
|
+
logic. The instructions for generation are guided by HQMF documents and exported
|
16
|
+
into various health standards, e.g. C32, CCR.
|
17
|
+
email: talk@projectpophealth.org
|
18
|
+
executables: []
|
19
|
+
extensions: []
|
20
|
+
extra_rdoc_files: []
|
21
|
+
files:
|
22
|
+
- lib/test-patient-generator.rb
|
23
|
+
- lib/tpg/ext/coded.rb
|
24
|
+
- lib/tpg/ext/conjunction.rb
|
25
|
+
- lib/tpg/ext/data_criteria.rb
|
26
|
+
- lib/tpg/ext/derivation_operator.rb
|
27
|
+
- lib/tpg/ext/population_criteria.rb
|
28
|
+
- lib/tpg/ext/precondition.rb
|
29
|
+
- lib/tpg/ext/range.rb
|
30
|
+
- lib/tpg/ext/record.rb
|
31
|
+
- lib/tpg/ext/subset_operator.rb
|
32
|
+
- lib/tpg/ext/temporal_reference.rb
|
33
|
+
- lib/tpg/ext/value.rb
|
34
|
+
- lib/tpg/generation/exporter.rb
|
35
|
+
- lib/tpg/generation/generator.rb
|
36
|
+
- lib/tpg/generation/randomizer.rb
|
37
|
+
- Gemfile
|
38
|
+
- Rakefile
|
39
|
+
- public/cda.xsl
|
40
|
+
homepage: https://github.com/pophealth/test-patient-generator
|
41
|
+
licenses: []
|
42
|
+
post_install_message:
|
43
|
+
rdoc_options: []
|
44
|
+
require_paths:
|
45
|
+
- lib
|
46
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
47
|
+
none: false
|
48
|
+
requirements:
|
49
|
+
- - ! '>='
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
version: '0'
|
52
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
54
|
+
requirements:
|
55
|
+
- - ! '>='
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '0'
|
58
|
+
requirements: []
|
59
|
+
rubyforge_project:
|
60
|
+
rubygems_version: 1.8.24
|
61
|
+
signing_key:
|
62
|
+
specification_version: 3
|
63
|
+
summary: A utility to generate patients for unit testing clinical quality measure
|
64
|
+
logic.
|
65
|
+
test_files: []
|
66
|
+
has_rdoc:
|