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
FSL
fslpy
Commits
f93a4f88
Commit
f93a4f88
authored
Aug 20, 2021
by
Paul McCarthy
🚵
Browse files
MNT: Deprecate fsl.utils.fslsub.SubmitParams (and, by extension,
fsl.utils.fslsub.submit)
parent
d211ea51
Changes
1
Show whitespace changes
Inline
Side-by-side
fsl/utils/fslsub.py
View file @
f93a4f88
...
@@ -53,6 +53,9 @@ import warnings
...
@@ -53,6 +53,9 @@ import warnings
import
os
import
os
import
fsl.utils.deprecated
as
deprecated
log
=
logging
.
getLogger
(
__name__
)
log
=
logging
.
getLogger
(
__name__
)
...
@@ -152,6 +155,8 @@ class SubmitParams(object):
...
@@ -152,6 +155,8 @@ class SubmitParams(object):
def
__str__
(
self
):
def
__str__
(
self
):
return
'SubmitParams({})'
.
format
(
" "
.
join
(
self
.
as_flags
()))
return
'SubmitParams({})'
.
format
(
" "
.
join
(
self
.
as_flags
()))
@
deprecated
.
deprecated
(
'3.7.0'
,
'4.0.0'
,
'Use fsl.wrappers.fsl_sub instead'
)
def
__call__
(
self
,
*
command
,
**
kwargs
):
def
__call__
(
self
,
*
command
,
**
kwargs
):
"""
"""
Submits the command to the cluster.
Submits the command to the cluster.
...
...
Write
Preview
Markdown
is supported
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