Skip to content

Instantly share code, notes, and snippets.

@dmwelch
Forked from satra/display_crash.py
Created January 26, 2012 06:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmwelch/1681314 to your computer and use it in GitHub Desktop.
Save dmwelch/1681314 to your computer and use it in GitHub Desktop.
Displays nipype crash files with formatted information
#! /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']
tb = crash_data['traceback']
print "\n"
print "File: %s"%crashfile
print "Node: %s"%node
if node.base_dir:
print "Working directory: %s"%node.output_dir()
else:
print "Node crashed before execution"
print "\n"
print "Node inputs:"
print node.inputs
print "\n"
print "Traceback: "
print ''.join(tb)
print "\n"
if rerun:
print "Rerunning node"
node.base_dir = None
node.config['crashdump_dir'] = '/tmp'
node.run()
print "\n"
if __name__ == "__main__":
docstr= '''
Display crash information from a nipype crash file
'''
parser = argparse.ArgumentParser(prog='display_crash.py',
description=docstr)
parser.add_argument('crashfile', metavar='f', type=str,
help='crash file to display')
parser.add_argument('-r','--rerun', dest='rerun',
default=False, action="store_true",
help='rerun crashed node')
args = parser.parse_args()
display_crash_files(args.crashfile, args.rerun)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment