Skip to content

Commit 21e4874

Browse files
committed
Merge remote-tracking branch 'upstream/master' into fix/misc
* upstream/master: Update Vagrantfile few minor spell fixes Fixed missing outputfiles
2 parents ed0bb6c + abca88a commit 21e4874

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

Vagrantfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ $script = <<SCRIPT
2020
# qconf -aattr queue slots "2, [neuro=3]" main.q
2121
2222
# install anaconda
23-
wget http://repo.continuum.io/miniconda/Miniconda-3.0.0-Linux-x86_64.sh -O miniconda.sh
23+
wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
2424
chmod +x miniconda.sh
2525
./miniconda.sh -b
2626
echo "export PATH=$HOME/miniconda/bin:\\$PATH" >> .bashrc
2727
2828
# install nipype dependencies
29-
$HOME/anaconda/bin/conda update --yes conda
30-
$HOME/anaconda/bin/conda install --yes pip numpy scipy nose traits networkx
31-
$HOME/anaconda/bin/conda install --yes dateutil ipython-notebook matplotlib
32-
$HOME/anaconda/bin/pip install nibabel --use-mirrors
33-
$HOME/anaconda/bin/pip install https://github.com/RDFLib/rdflib/archive/master.zip
34-
$HOME/anaconda/bin/pip install https://github.com/satra/prov/archive/enh/rdf.zip
35-
$HOME/anaconda/bin/pip install https://github.com/nipy/nipype/archive/master.zip
29+
$HOME/miniconda/bin/conda update --yes conda
30+
$HOME/miniconda/bin/conda install --yes pip numpy scipy nose traits networkx
31+
$HOME/miniconda/bin/conda install --yes dateutil ipython-notebook matplotlib
32+
$HOME/miniconda/bin/pip install nibabel --use-mirrors
33+
$HOME/miniconda/bin/pip install https://github.com/RDFLib/rdflib/archive/master.zip
34+
$HOME/miniconda/bin/pip install https://github.com/satra/prov/archive/enh/rdf.zip
35+
$HOME/miniconda/bin/pip install https://github.com/nipy/nipype/archive/master.zip
3636
SCRIPT
3737

3838
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
@@ -42,7 +42,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
4242
engine_config.vm.box = "gridneuro"
4343
#engine_config.vm.box_url = "http://files.vagrantup.com/precise64.box"
4444
engine_config.vm.box_url = "https://dl.dropboxusercontent.com/u/363467/precise64_neuro.box"
45-
engine_config.vm.network :forwarded_port, guest: 80, host: 8080
45+
#engine_config.vm.network :forwarded_port, guest: 80, host: 8080
4646

4747
#engine_config.vm.network :public_network, :bridge => 'en0: Wi-Fi (AirPort)'
4848
engine_config.vm.network :private_network, ip: "192.168.100.20"

nipype/interfaces/fsl/preprocess.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1396,7 +1396,7 @@ def _gen_filename(self, name):
13961396

13971397

13981398
class FIRSTInputSpec(FSLCommandInputSpec):
1399-
in_file = File(exists=True, mandatory=True, position=-2,
1399+
in_file = File(exists=True, mandatory=True, position=-2, copyfile=False,
14001400
argstr='-i %s',
14011401
desc='input data file')
14021402
out_file = File('segmented', usedefault=True, mandatory=True, position=-1,
@@ -1496,12 +1496,12 @@ def _gen_mesh_names(self, name, structures):
14961496
vtks = list()
14971497
for struct in structures:
14981498
vtk = prefix + '-' + struct + '_first.vtk'
1499-
vtks.append(op.abspath(vtk))
1499+
vtks.append(op.abspath(vtk))
15001500
return vtks
15011501
if name == 'bvars':
15021502
bvars = list()
15031503
for struct in structures:
15041504
bvar = prefix + '-' + struct + '_first.bvars'
1505-
bvars.append(op.abspath(bvar))
1505+
bvars.append(op.abspath(bvar))
15061506
return bvars
15071507
return None

nipype/pipeline/plugins/dagman.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ class CondorDAGManPlugin(GraphPluginBase):
2727
submit file
2828
- override_specs : additional submit specs that are appended to any job's
2929
submit file
30-
- wrapper_cmd : path to an exectuable that will be started instead of a node
30+
- wrapper_cmd : path to an executable that will be started instead of a node
3131
script. This is useful for wrapper script that execute certain
3232
functionality prior or after a node runs. If this option is
3333
given the wrapper command is called with the respective Python
34-
exectuable and the path to the node script as final arguments
34+
executable and the path to the node script as final arguments
3535
- wrapper_args : optional additional arguments to a wrapper command
3636
- dagman_args : arguments to be prepended to the arguments of the
3737
condor_submit_dag call
3838
- block : if True the plugin call will block until Condor has finished
39-
prcoessing the entire workflow (default: False)
39+
processing the entire workflow (default: False)
4040
"""
4141

4242
default_submit_template = """

0 commit comments

Comments
 (0)