Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

accessory python script bugfix, Heudiconv v0.10.0 #31

Merged
merged 3 commits into from
May 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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