We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c756389 commit 07d976eCopy full SHA for 07d976e
files/snakemake-lesson/plotcount.py
@@ -1,5 +1,12 @@
1
#!/usr/bin/env python
2
3
+######################################################################
4
+# Never do the following in the real world, warnings are important!
5
+# This silences warnings only to not confuse learners.
6
+import warnings
7
+warnings.filterwarnings("ignore")
8
9
+
10
import numpy as np
11
import matplotlib.pyplot as plt
12
import sys
0 commit comments