HOMEWORK: Packages

HOMEWORK: Packages

Modules and packages are a nice way to organize code. You can read about how to deal with packages from the Julia manual Modules and Pkg sections and from the package manager documentation.

PkgTemplates

The quickest and simplest way to create a package is using PkgTemplates. For example, this Julia package was generated using the interactive_template and generate functions of PkgTemplates.

Also, this package website/documentation and jupyter notebooks are generated using Documenter and Literate.

Homework

Use PkgTemplates to create a small PersonalUtils.jl package. Include your function to read fasta files from the previous homework in your package module and add unit tests for it.

This page was generated using Literate.jl.