You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this magic made it very hard to debug a problem loading. It is nice that it gives a hint, but the hint was not correct
and catch and discarding the error message means having to modify the code to debug.
Please do not discard error messages.
try:
from err_correct_w_genome import err_correct
from sam_to_gff3 import convert_sam_to_gff3
from STAR import STARJunctionReader
from BED import LazyBEDPointReader
import coordinate_mapper as cordmap
except ImportError:
print("Unable to import err_correct_w_genome or sam_to_gff3.py! Please make sure cDNA_Cupcake/sequence/ is in $PYTHONPATH.", file=sys.stderr)
sys.exit(-1)
The text was updated successfully, but these errors were encountered:
this magic made it very hard to debug a problem loading. It is nice that it gives a hint, but the hint was not correct
and catch and discarding the error message means having to modify the code to debug.
Please do not discard error messages.
The text was updated successfully, but these errors were encountered: