aaa540021bad38c536cf704ef5ec7471b6e03e27,docs/conf.py,,,#,28

Before Change


    def __getattr__(cls, name):
            return MagicMock()

MOCK_MODULES = ["numpy", "scipy", "biopython",
                "matplotlib", "pyBigWig",
                "pysam", "intervaltree","tables"]

sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)

//for mod_name in MOCK_MODULES:

After Change


//// to allow readthedocs to compile without installing some dependencies
import mock

MOCK_MODULES = ["numpy", "pandas", "pysam", "intervaltree",
                "scipy", "scipy.sparse", "scipy.stats",
                "matplotlib", "matplotlib.pyplot", "matplotlib.gridspec", "matplotlib.ticker",
                "matplotlib.textpath", "matplotlib.patches", "matplotlib.colors", "matplotlib.cm",
                "mpl_toolkits", "mpl_toolkits.axisartist", "mpl_toolkits.mplot3d",
                "pyBigWig",
                "Bio", "Bio.Seq", "Bio.Alphabet", "pytables"]

for mod_name in MOCK_MODULES:
    sys.modules[mod_name] = mock.Mock()


// If extensions (or modules to document with autodoc) are in another directory,
// add these directories to sys.path here. If the directory is relative to the
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 7

Instances


Project Name: deeptools/HiCExplorer
Commit Name: aaa540021bad38c536cf704ef5ec7471b6e03e27
Time: 2017-02-28
Author: bhardwaj@ie-freiburg.mpg.de
File Name: docs/conf.py
Class Name:
Method Name:


Project Name: J535D165/recordlinkage
Commit Name: 8b7b3d7e8fd009811efa5dd93faa1019a2a6f59f
Time: 2016-11-08
Author: jonathandebruinhome@gmail.com
File Name: docs/conf.py
Class Name:
Method Name:


Project Name: J535D165/recordlinkage
Commit Name: bd69731ada6ea43357458307c1a220d1223a1e90
Time: 2017-01-23
Author: jonathandebruinhome@gmail.com
File Name: docs/conf.py
Class Name:
Method Name: