Documentation-Rons-Rules-For-Tools

From Slicer Wiki
Jump to: navigation, search
Home < Documentation-Rons-Rules-For-Tools

Introduction

"Rules for tools" is an informal set of rules that developers should keep in mind when working on interactive tools for translational clinical research. If you follow them, you will create tools that many people can use.

  1. Your tool works when it works on my laptop with my data. Until then its useless to me.
  2. I am lazy. Make my life easy.
    1. Minimize the number of clicks
    2. Minimize the distance my pointer has to travel
    3. Make sure your module sets up everything for me, but allow me to override.
    4. E.g. if you create an output file, use the input filename plus name of the module.
  3. No more than one parameter that I can set. If I need more than 20 seconds to figure out how to set the parameter, I won't!
  4. If I can take my lunch break while your algorithm is running, I won't return to it.