Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
William Clarke
fsl_mrs
Commits
caccacbd
Commit
caccacbd
authored
May 19, 2021
by
Michiel Cottaar
Committed by
William Clarke
May 19, 2021
Browse files
Allow in-memory basis functions for data synthesis
parent
c79ceb9c
Changes
1
Hide whitespace changes
Inline
Side-by-side
fsl_mrs/utils/synthetic/synthetic_from_basis.py
View file @
caccacbd
...
...
@@ -12,6 +12,7 @@ from fsl_mrs.utils import mrs_io
from
fsl_mrs.utils.baseline
import
prepare_baseline_regressor
from
fsl_mrs.core
import
MRS
from
fsl_mrs.utils
import
models
from
pathlib
import
Path
def
standardConcentrations
(
basisNames
):
...
...
@@ -57,7 +58,10 @@ def prep_mrs_for_synthetic(basisFile, points, bandwidth, ignore, ind_scaling, co
metabolites in the basis file can be ignored or independently scaled.
"""
basis
,
names
,
header
=
mrs_io
.
read_basis
(
basisFile
)
if
isinstance
(
basisFile
,
(
str
,
Path
)):
basis
,
names
,
header
=
mrs_io
.
read_basis
(
basisFile
)
else
:
basis
,
names
,
header
=
basisFile
empty_mrs
=
MRS
(
FID
=
np
.
ones
((
points
,)),
cf
=
header
[
0
][
'centralFrequency'
],
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment