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
Is your feature request related to a problem? Please describe.
We'd like to minimise work needed to create a new template from new source data.
Describe the solution you'd like
A well-designed and documented way to make a template that
uses default methods for each step, to minimise effort
avoid duplications by e.g. ensuring default names for files, and writing intermediate files, and the default methods for template generation steps mentioned above.
makes it easy to customise steps for which the new data is tricky
Describe alternatives you've considered
\
Additional context
Currently considering decorator, strategy and template pattern, but also might like to think about non-OO approaches to this, that might be simpler.
The text was updated successfully, but these errors were encountered:
fromtemplate_buildingimportTemplatePrepper# for easy atlasesif__name__=="__main__":
crab_template=TemplatePrepper("crab")
crab_template.run()
#----------------------------------------------------# for harder atlasclassDifficultTemplatePrepper(TemplatePrepper):
def__init__(config):
passdefinitialRegistrationStep(self):
# do a fancier initial registrationpass# for hard atlasesif__name__=="__main__":
crab_template=DifficultTemplatePrepper("crab")
crab_template.run()
Is your feature request related to a problem? Please describe.
We'd like to minimise work needed to create a new template from new source data.
Describe the solution you'd like
A well-designed and documented way to make a template that
Describe alternatives you've considered
\
Additional context
Currently considering decorator, strategy and template pattern, but also might like to think about non-OO approaches to this, that might be simpler.
The text was updated successfully, but these errors were encountered: