Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.pad.base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.pad.base
Merge requests
!78
Dask pipelines Improvements
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Dask pipelines Improvements
dask-pipelines
into
master
Overview
4
Commits
4
Pipelines
2
Changes
11
All threads resolved!
Hide all comments
Merged
Dask pipelines Improvements
Amir MOHAMMADI
requested to merge
dask-pipelines
into
master
Nov 13, 2020
Overview
4
Commits
4
Pipelines
2
Changes
11
All threads resolved!
Hide all comments
This MR improves the dask pipelines port.
Edited
Nov 25, 2020
by
Amir MOHAMMADI
0
0
Merge request reports
Compare
master
version 1
1b803d1d
Nov 13, 2020
master (base)
and
latest version
latest version
3ad7b6c9
4 commits,
Nov 25, 2020
version 1
1b803d1d
2 commits,
Nov 13, 2020
11 files
+
129
−
188
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
bob/pad/base/database/__init__.py
+
11
−
16
View file @ 3ad7b6c9
Edit in single-file editor
Open in Web IDE
Show full file
@@ -6,26 +6,21 @@ from .PadBioFileDB import HighBioDatabase, HighPadDatabase
# gets sphinx autodoc done right - don't remove it
def
__appropriate__
(
*
args
):
"""
Says object was actually declared here, and not in the import module.
Fixing sphinx warnings of not being able to find classes, when path is shortened.
Parameters:
"""
Says object was actually declared here, and not in the import module.
Fixing sphinx warnings of not being able to find classes, when path is shortened.
Parameters:
*args: An iterable of objects to modify
*args: An iterable of objects to modify
Resolves `Sphinx referencing issues
<https://github.com/sphinx-doc/sphinx/issues/3048>`
"""
Resolves `Sphinx referencing issues
<https://github.com/sphinx-doc/sphinx/issues/3048>`
"""
for
obj
in
args
:
obj
.
__module__
=
__name__
for
obj
in
args
:
obj
.
__module__
=
__name__
__appropriate__
(
PadFile
,
PadDatabase
,
FileListPadDatabase
,
Client
,
HighBioDatabase
,
HighPadDatabase
PadFile
,
PadDatabase
,
FileListPadDatabase
,
Client
,
HighBioDatabase
,
HighPadDatabase
)
__all__
=
[
_
for
_
in
dir
()
if
not
_
.
startswith
(
'
_
'
)]
__all__
=
[
_
for
_
in
dir
()
if
not
_
.
startswith
(
"
_
"
)]
Loading