This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
import argparse | |
from nipype.utils.filemanip import loadcrash | |
def display_crash_files(crashfile, rerun): | |
"display crash file content and rerun if required" | |
crash_data = loadcrash(crashfile) | |
node = crash_data['node'] |