Skip to content

Commit

Permalink
Merge pull request #550 from bento-platform/features/experiments_html…
Browse files Browse the repository at this point in the history
…_support

Features/experiments html support
  • Loading branch information
noctillion authored Oct 29, 2024
2 parents d0b00fd + 1ba0364 commit 51de9e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion chord_metadata_service/chord/workflows/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def boolean_input(id_: str, required: bool = True):
wm.WorkflowFileArrayInput(
id="document_files",
required=True,
pattern=r"^.*\.(pdf|csv|tsv|txt|docx|xlsx|jpeg|jpg|png|gif|md|markdown|mp3|m4a|mp4)$",
pattern=r"^.*\.(pdf|csv|tsv|txt|docx|xlsx|jpeg|jpg|png|gif|md|markdown|html|mp3|m4a|mp4)$",
),
],
))
Expand Down
4 changes: 2 additions & 2 deletions chord_metadata_service/experiments/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@
"file_format": {
"type": "string",
"enum": ["SAM", "BAM", "CRAM", "VCF", "BCF", "MAF", "GVCF", "BigWig", "BigBed", "FASTA", "FASTQ", "TAB",
"SRA", "SRF", "SFF", "GFF", "PDF", "CSV", "TSV", "JPEG", "PNG", "GIF", "MARKDOWN", "MP3", "M4A",
"MP4", "DOCX", "XLS", "XLSX", "UNKNOWN", "OTHER"]
"SRA", "SRF", "SFF", "GFF", "PDF", "CSV", "TSV", "JPEG", "PNG", "GIF", "HTML", "MARKDOWN",
"MP3", "M4A", "MP4", "DOCX", "XLS", "XLSX", "UNKNOWN", "OTHER"]
},
"data_output_type": {
"type": "string",
Expand Down

0 comments on commit 51de9e8

Please sign in to comment.