metamri 0.1.7 → 0.1.8
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.
- data/VERSION +1 -1
- data/lib/nifti_builder.rb +1 -1
- data/metamri.gemspec +3 -3
- metadata +3 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.8
|
data/lib/nifti_builder.rb
CHANGED
|
@@ -8,7 +8,7 @@ TO3D_CMD = 'to3d'
|
|
|
8
8
|
|
|
9
9
|
module UnknownImageDataset
|
|
10
10
|
# Always set AFNI GE DICOM Fix to "No" before conversion with to3d.
|
|
11
|
-
ENV['AFNI_SLICE_SPACING_IS_GAP']
|
|
11
|
+
ENV['AFNI_SLICE_SPACING_IS_GAP'] = "NO"
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
def dataset_to_nifti(nifti_output_directory, nifti_filename, input_options = {} )
|
data/metamri.gemspec
CHANGED
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{metamri}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.8"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Kristopher J. Kosmatka"]
|
|
12
|
-
s.date = %q{2010-01-
|
|
12
|
+
s.date = %q{2010-01-20}
|
|
13
13
|
s.description = %q{Extraction of MRI metadata and insertion into compatible sqlite3 databases.}
|
|
14
14
|
s.email = %q{kk4@medicine.wisc.edu}
|
|
15
|
-
s.executables = ["
|
|
15
|
+
s.executables = ["import_study.rb", "import_visit.rb", "convert_visit.rb", "import_respiratory_files.rb"]
|
|
16
16
|
s.extra_rdoc_files = [
|
|
17
17
|
"README.rdoc"
|
|
18
18
|
]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: metamri
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kristopher J. Kosmatka
|
|
@@ -9,16 +9,16 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2010-01-
|
|
12
|
+
date: 2010-01-20 00:00:00 -06:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
16
16
|
description: Extraction of MRI metadata and insertion into compatible sqlite3 databases.
|
|
17
17
|
email: kk4@medicine.wisc.edu
|
|
18
18
|
executables:
|
|
19
|
-
- convert_visit.rb
|
|
20
19
|
- import_study.rb
|
|
21
20
|
- import_visit.rb
|
|
21
|
+
- convert_visit.rb
|
|
22
22
|
- import_respiratory_files.rb
|
|
23
23
|
extensions: []
|
|
24
24
|
|