Skip to content

Commit

Permalink
add info on errno 32
Browse files Browse the repository at this point in the history
  • Loading branch information
daler committed May 24, 2016
1 parent 00b8b18 commit 55629ba
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pybedtools/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,13 @@ def call_bedtools(cmds, tmpfn=None, stdin=None, check_stderr=None, decode_output
13: ('* Do you have permission to write '
'to the output file ("%s")?' % tmpfn,),
24: ('* Too many files open -- please submit '
'a bug report so that this can be fixed',)
'a bug report so that this can be fixed',),
32: ('* Broken pipe -- if you passed a BedTool object '
'that was created using a generator function, '
'please try saving it to disk first using the '
'.saveas() method before calling this bedtools '
'command. See issue #49 for more.' ,),

}

print('Things to check:')
Expand Down

0 comments on commit 55629ba

Please sign in to comment.