Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

File Recognition - Added computational workflow file types #8761

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
The following file extensions are now detected:

wdl=text/x-workflow-description-language
cwl=text/x-computational-workflow-language
nf=text/x-nextflow
Rmd=text/x-r-notebook
rb=text/x-ruby-script
dag=text/x-dagman
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,9 @@ smcl=application/x-stata-smcl
swc=application/x-swc
xz=application/x-xz
xlsx=application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
wdl=text/x-workflow-description-language
cwl=text/x-computational-workflow-language
nf=text/x-nextflow
Rmd=text/x-r-notebook
rb=text/x-ruby-script
dag=text/x-dagman
8 changes: 8 additions & 0 deletions src/main/java/propertyFiles/MimeTypeDisplay.properties
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,14 @@ application/x-sas-syntax=SAS Syntax
type/x-r-syntax=R Syntax
application/vnd.wolfram.mathematica.package=Wolfram Mathematica Code
application/vnd.wolfram.mathematica=Wolfram Mathematica Code
text/x-workflow-description-language=Workflow Description Language
text/x-computational-workflow-language=Computational Workflow Language
text/x-nextflow=Nextflow Script
text/x-r-notebook=R Notebook
text/x-ruby-script=Ruby Source Code
text/x-dagman=DAGMan Workflow
text/x-makefile=Makefile Script
text/x-snakemake=Snakemake Workflow
# Ingested Tabular Data
text/tab-separated-values=Tab-Delimited
# RawData
Expand Down
8 changes: 8 additions & 0 deletions src/main/java/propertyFiles/MimeTypeFacets.properties
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ type/x-r-syntax=Code
application/postscript=Code
application/vnd.wolfram.mathematica.package=Code
application/vnd.wolfram.mathematica=Code
text/x-workflow-description-language=Code
text/x-computational-workflow-language=Code
text/x-nextflow=Code
text/x-r-notebook=Code
text/x-ruby-script=Code
text/x-dagman=Code
text/x-makefile=Code
text/x-snakemake=Code
# Ingested
text/tab-separated-values=Tabular Data
# Data
Expand Down