├── .gitignore ├── .python-version ├── Comments.tmPreferences ├── Default (Linux).sublime-keymap ├── LICENSE ├── Nextflow.sublime-commands ├── Nextflow.sublime-settings ├── Nextflow.sublime-syntax ├── README.md ├── VERSION ├── conda_completions.py ├── container_select.py ├── images ├── conda-completion.png ├── container-command-quick-menu.png ├── goto-process-definition.png ├── include-process-command-quick-menu.png ├── nfcore-sublime_logo.png ├── params-popup-nf-core-viralrecon.png ├── process-out-completion-nf-core-viralrecon.png ├── process-out-popup-nf-core-viralrecon.png ├── syntax-highlighting-module-imports-nf-core-viralrecon.png ├── syntax-highlighting-process-def-nf-core-viralrecon.png └── syntax-highlighting-workflow-def-nf-core-viralrecon.png ├── messages.json ├── messages ├── 1.0.0.txt ├── 1.1.0.txt ├── 1.2.0.txt └── install.txt ├── nextflow_include_command.py ├── params_completions.py ├── process_label_completion.py ├── process_popups.py ├── snippets ├── nextflow-ch_versions-mix.sublime-snippet ├── nextflow-conda.sublime-snippet ├── nextflow-done-log-oncomplete-onerror.sublime-snippet ├── nextflow-dsl2.sublime-snippet ├── nextflow-env.sublime-snippet ├── nextflow-log-info.sublime-snippet ├── nextflow-modules-config.sublime-snippet ├── nextflow-paired-end-illumina-reads-input-channel.sublime-snippet ├── nextflow-process.sublime-snippet ├── nextflow-publishDir.sublime-snippet ├── nextflow-script-cpus.sublime-snippet ├── nextflow-script-memory-gigabytes.sublime-snippet ├── nextflow-script-memory-megabytes.sublime-snippet ├── nextflow-tag.sublime-snippet └── nextflow-versions-yml.sublime-snippet └── syntax_test_.Nextflow /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.8 -------------------------------------------------------------------------------- /Comments.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/Comments.tmPreferences -------------------------------------------------------------------------------- /Default (Linux).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/Default (Linux).sublime-keymap -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/LICENSE -------------------------------------------------------------------------------- /Nextflow.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/Nextflow.sublime-commands -------------------------------------------------------------------------------- /Nextflow.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/Nextflow.sublime-settings -------------------------------------------------------------------------------- /Nextflow.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/Nextflow.sublime-syntax -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.2.0 -------------------------------------------------------------------------------- /conda_completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/conda_completions.py -------------------------------------------------------------------------------- /container_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/container_select.py -------------------------------------------------------------------------------- /images/conda-completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/images/conda-completion.png -------------------------------------------------------------------------------- /images/container-command-quick-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/images/container-command-quick-menu.png -------------------------------------------------------------------------------- /images/goto-process-definition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/images/goto-process-definition.png -------------------------------------------------------------------------------- /images/include-process-command-quick-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/images/include-process-command-quick-menu.png -------------------------------------------------------------------------------- /images/nfcore-sublime_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/images/nfcore-sublime_logo.png -------------------------------------------------------------------------------- /images/params-popup-nf-core-viralrecon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/images/params-popup-nf-core-viralrecon.png -------------------------------------------------------------------------------- /images/process-out-completion-nf-core-viralrecon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/images/process-out-completion-nf-core-viralrecon.png -------------------------------------------------------------------------------- /images/process-out-popup-nf-core-viralrecon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/images/process-out-popup-nf-core-viralrecon.png -------------------------------------------------------------------------------- /images/syntax-highlighting-module-imports-nf-core-viralrecon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/images/syntax-highlighting-module-imports-nf-core-viralrecon.png -------------------------------------------------------------------------------- /images/syntax-highlighting-process-def-nf-core-viralrecon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/images/syntax-highlighting-process-def-nf-core-viralrecon.png -------------------------------------------------------------------------------- /images/syntax-highlighting-workflow-def-nf-core-viralrecon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/images/syntax-highlighting-workflow-def-nf-core-viralrecon.png -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/messages.json -------------------------------------------------------------------------------- /messages/1.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/messages/1.0.0.txt -------------------------------------------------------------------------------- /messages/1.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/messages/1.1.0.txt -------------------------------------------------------------------------------- /messages/1.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/messages/1.2.0.txt -------------------------------------------------------------------------------- /messages/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/messages/install.txt -------------------------------------------------------------------------------- /nextflow_include_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/nextflow_include_command.py -------------------------------------------------------------------------------- /params_completions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/params_completions.py -------------------------------------------------------------------------------- /process_label_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/process_label_completion.py -------------------------------------------------------------------------------- /process_popups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/process_popups.py -------------------------------------------------------------------------------- /snippets/nextflow-ch_versions-mix.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-ch_versions-mix.sublime-snippet -------------------------------------------------------------------------------- /snippets/nextflow-conda.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-conda.sublime-snippet -------------------------------------------------------------------------------- /snippets/nextflow-done-log-oncomplete-onerror.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-done-log-oncomplete-onerror.sublime-snippet -------------------------------------------------------------------------------- /snippets/nextflow-dsl2.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-dsl2.sublime-snippet -------------------------------------------------------------------------------- /snippets/nextflow-env.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-env.sublime-snippet -------------------------------------------------------------------------------- /snippets/nextflow-log-info.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-log-info.sublime-snippet -------------------------------------------------------------------------------- /snippets/nextflow-modules-config.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-modules-config.sublime-snippet -------------------------------------------------------------------------------- /snippets/nextflow-paired-end-illumina-reads-input-channel.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-paired-end-illumina-reads-input-channel.sublime-snippet -------------------------------------------------------------------------------- /snippets/nextflow-process.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-process.sublime-snippet -------------------------------------------------------------------------------- /snippets/nextflow-publishDir.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-publishDir.sublime-snippet -------------------------------------------------------------------------------- /snippets/nextflow-script-cpus.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-script-cpus.sublime-snippet -------------------------------------------------------------------------------- /snippets/nextflow-script-memory-gigabytes.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-script-memory-gigabytes.sublime-snippet -------------------------------------------------------------------------------- /snippets/nextflow-script-memory-megabytes.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-script-memory-megabytes.sublime-snippet -------------------------------------------------------------------------------- /snippets/nextflow-tag.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-tag.sublime-snippet -------------------------------------------------------------------------------- /snippets/nextflow-versions-yml.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/snippets/nextflow-versions-yml.sublime-snippet -------------------------------------------------------------------------------- /syntax_test_.Nextflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterk87/sublime-nextflow/HEAD/syntax_test_.Nextflow --------------------------------------------------------------------------------