Skip to content

Commit

Permalink
Merge pull request #31 from khanlab/heudiconv-v0.10.0
Browse files Browse the repository at this point in the history
accessory python script bugfix, Heudiconv v0.10.0
  • Loading branch information
akhanf authored May 9, 2022
2 parents 9613122 + f9f5db8 commit 1e1d74d
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ LABEL maintainer="<alik@robarts.ca>"
ENV DCM2NIIXTAG v1.0.20210317

#heudiconv version:
ENV HEUDICONVTAG v0.5.4
ENV HEUDICONVTAG v0.10.0

#bids validator version:
ENV BIDSTAG 1.2.5
ENV BIDSTAG 1.9.3

#pydeface version:
ENV PYDEFACETAG v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion etc/correctFieldMapJson.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3
'''
correct field map json
'''
Expand Down
2 changes: 1 addition & 1 deletion etc/correctFieldMapJsonCase2.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3
'''
correct field map json
'''
Expand Down
2 changes: 1 addition & 1 deletion etc/fixImFreq_json.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3

# import modules
import os
Expand Down
2 changes: 1 addition & 1 deletion etc/genPhaseFromComplexNii.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import sys
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion etc/magfmap_bids_corrector.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3

# import modules
import os
Expand Down
2 changes: 1 addition & 1 deletion etc/magphase_sa2rage_bids_corrector.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3

# import modules
import os
Expand Down
2 changes: 1 addition & 1 deletion etc/meEPI_bids_corrector.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3

# import modules
import os
Expand Down
2 changes: 1 addition & 1 deletion etc/meGRE_bids_corrector.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3

# import modules
import os
Expand Down
2 changes: 1 addition & 1 deletion etc/merge_vNav.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion etc/mp2rage_genUniDen.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
from __future__ import print_function

import sys
Expand Down
2 changes: 1 addition & 1 deletion etc/pdt2_bids_corrector.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3

# import modules
import os
Expand Down
2 changes: 1 addition & 1 deletion etc/twomagphase_bids_corrector.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3

# import modules
import os
Expand Down
2 changes: 1 addition & 1 deletion tar2bids
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ fi
fi

#merge any vNav files if they exist
python $execpath/etc/merge_vNav.py $output_dir
python3 $execpath/etc/merge_vNav.py $output_dir

#remove scans.tsv files as they may be out of date after corrections
rm -f $output_dir/*/*_scans.tsv $output_dir/*/*/*_scans.tsv
Expand Down

0 comments on commit 1e1d74d

Please sign in to comment.