Skip to content

Commit 1e4bf2c

Browse files
Merge pull request #75 from mahesh-panchal/annotation_workflow_refactor
Annotation workflow refactor
2 parents bd53b11 + e208927 commit 1e4bf2c

File tree

96 files changed

+2583
-2338
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+2583
-2338
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.config linguist-language=nextflow
2+
modules/nf-core/** linguist-generated
3+
subworkflows/nf-core/** linguist-generated

.github/workflows/continuous_integration.yml

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
1-
# This is a basic workflow to help you get started with Actions
2-
31
name: Continuous Integration
42

53
# Controls when the action will run. Triggers the workflow on push or pull request
6-
# events but only for the master branch
4+
# events but only for the master branch, or add_actions branch
75
on:
86
push:
97
branches: [ master, add_actions ]
108
pull_request:
119
branches: [ master, add_actions ]
1210

13-
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1411
jobs:
15-
# This workflow contains a job called "test"
16-
test:
17-
# The type of runner that the job will run on
12+
test_workflow:
1813
runs-on: ubuntu-latest
1914

2015
env:
@@ -23,15 +18,14 @@ jobs:
2318

2419
strategy:
2520
matrix:
26-
nxf_ver: ['20.01.0', '']
21+
nxf_ver: ['21.10.6', '']
2722
profile:
28-
# - conda
2923
- docker
3024
workflow:
31-
- ${GITHUB_WORKSPACE}/AbinitioTraining
32-
- ${GITHUB_WORKSPACE}/AnnotationPreprocessing
33-
# - ${GITHUB_WORKSPACE}/FunctionalAnnotation
34-
- ${GITHUB_WORKSPACE}/TranscriptAssembly
25+
- 'abinitio_training'
26+
- 'annotation_preprocessing'
27+
- 'functional_annotation'
28+
- 'transcript_assembly'
3529

3630
# Steps represent a sequence of tasks that will be executed as part of the job
3731
steps:
@@ -53,4 +47,4 @@ jobs:
5347
# run: alias interproscan.sh='docker run biocontainers/interproscan:v5.30-69.0_cv3 /opt/interproscan/interproscan.sh'
5448

5549
- name: Test ${{ matrix.workflow }} with profile ${{ matrix.profile }}
56-
run: nextflow run -profile test,${{ matrix.profile }} ${{ matrix.workflow }}
50+
run: nextflow run -profile test,${{ matrix.profile }} main.nf --subworkflow ${{ matrix.workflow }}

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.nextflow*
2-
pipeline_report/
32
results/
4-
work/
3+
work/
4+
5+
.DS_Store

.gitpod.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,9 @@ image: nfcore/gitpod:latest
33
vscode:
44
extensions: # based on nf-core.nf-core-extensionpack
55
- codezombiech.gitignore # Language support for .gitignore files
6-
# - cssho.vscode-svgviewer # SVG viewer
76
- davidanson.vscode-markdownlint # Markdown/CommonMark linting and style checking for Visual Studio Code
8-
- eamodio.gitlens # Quickly glimpse into whom, why, and when a line or code block was changed
97
- EditorConfig.EditorConfig # override user/workspace settings with settings found in .editorconfig files
10-
- Gruntfuggly.todo-tree # Display TODO and FIXME in a tree view in the activity bar
118
- mechatroner.rainbow-csv # Highlight columns in csv files in different colors
12-
# - nextflow.nextflow # Nextflow syntax highlighting
9+
- nextflow.nextflow # Nextflow syntax highlighting
1310
- oderwat.indent-rainbow # Highlight indentation level
1411
- streetsidesoftware.code-spell-checker # Spelling checker for source code

.nf-core.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
repository_type: pipeline

0 commit comments

Comments
 (0)