-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEATURE](__init__): Importing submodules when a module is loaded
- Loading branch information
Showing
7 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
from . import bipopulations | ||
from . import canonicalag | ||
from . import puckering | ||
name = "backbone" | ||
__all__ = ["bipopulations", "canonicalag", "puckering"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
from . import biobb_curves | ||
from . import biobb_canal | ||
from . import biobb_canion | ||
from . import canal_unzip | ||
name = "curves" | ||
__all__ = ["biobb_curves", "biobb_canal", "biobb_canion", "canal_unzip"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
from . import dna_averages | ||
from . import dna_bimodality | ||
from . import dna_timeseries | ||
from . import dna_timeseries_unzip | ||
name = "dna" | ||
__all__ = ["dna_averages", "dna_bimodality", "dna_timeseries", "dna_timeseries_unzip"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
from . import average_stiffness | ||
from . import basepair_stiffness | ||
name = "stiffness" | ||
__all__ = ["average_stiffness", "basepair_stiffness"] |