├── .github └── workflows │ ├── conventional-prs.yaml │ ├── main.yaml │ └── release-please.yaml ├── .gitignore ├── .snakemake-workflow-catalog.yml ├── .test └── config │ ├── config.yaml │ └── samples.tsv ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config ├── README.md ├── config.yaml └── schemas │ ├── config.schema.yaml │ └── samples.schema.yaml └── workflow ├── Snakefile ├── envs ├── get_genome.yaml ├── simulate_reads.yaml └── validate_genome.yaml ├── rules ├── common.smk └── process_reads.smk └── scripts └── validate_fasta.py /.github/workflows/conventional-prs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/.github/workflows/conventional-prs.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.github/workflows/release-please.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/.github/workflows/release-please.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.snakemake-workflow-catalog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/.snakemake-workflow-catalog.yml -------------------------------------------------------------------------------- /.test/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/.test/config/config.yaml -------------------------------------------------------------------------------- /.test/config/samples.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/.test/config/samples.tsv -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/README.md -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/config/README.md -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/config/config.yaml -------------------------------------------------------------------------------- /config/schemas/config.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/config/schemas/config.schema.yaml -------------------------------------------------------------------------------- /config/schemas/samples.schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/config/schemas/samples.schema.yaml -------------------------------------------------------------------------------- /workflow/Snakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/workflow/Snakefile -------------------------------------------------------------------------------- /workflow/envs/get_genome.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/workflow/envs/get_genome.yaml -------------------------------------------------------------------------------- /workflow/envs/simulate_reads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/workflow/envs/simulate_reads.yaml -------------------------------------------------------------------------------- /workflow/envs/validate_genome.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/workflow/envs/validate_genome.yaml -------------------------------------------------------------------------------- /workflow/rules/common.smk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/workflow/rules/common.smk -------------------------------------------------------------------------------- /workflow/rules/process_reads.smk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/workflow/rules/process_reads.smk -------------------------------------------------------------------------------- /workflow/scripts/validate_fasta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snakemake-workflows/snakemake-workflow-template/HEAD/workflow/scripts/validate_fasta.py --------------------------------------------------------------------------------