tompollard / omopetl

Package for creating OMOP ETLs.
MIT License
0 stars 0 forks source link

Add command line tool to install scaffold. #1

Closed tompollard closed 4 days ago

tompollard commented 4 days ago

This pull request adds a command line tool called startproject:

omopetl startproject <PROJECTNAME>

Running the command installs the following scaffold files at <PROJECTNAME>:

templates
├── README.md
├── data
├── etl_config.yaml
├── mappings.yaml
├── requirements.txt
├── scripts
│   ├── extract.py
│   ├── load.py
│   └── transform.py
├── tests
│   ├── test_extract.py
│   ├── test_load.py
│   └── test_transform.py
└── validation.yaml