-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
83 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Create Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'version.txt' | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Read version | ||
id: get_version | ||
run: | | ||
VERSION=$(cat version.txt) | ||
echo "VERSION=${VERSION}" >> $GITHUB_ENV | ||
- name: Create bundle zip | ||
run: zip -r bundle.zip *.wdl | ||
|
||
- name: Create Release | ||
run: gh release create ${{ env.VERSION }} metaT_assembly.wdl bundle.zip | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,52 @@ | ||
# The Metatranscriptome Assembly Pipeline | ||
|
||
## Summary | ||
This workflow is developed by Brian Foster at JGI. Original repo can be found (here)[https://code.jgi.doe.gov/BFoster/jgi_meta_wdl/-/tree/master/metatranscriptome]. | ||
This workflow is developed by Brian Foster at JGI. Original repo can be found (here)[https://code.jgi.doe.gov/BFoster/jgi_meta_wdl/-/tree/master/metatranscriptome]. This workflow uses BBTools and SPAdes to assemble QC'ed transcriptomic reads. | ||
|
||
## Running Workflow in Cromwell | ||
|
||
Description of the files: | ||
- `.wdl` file: the WDL file for workflow definition | ||
- `.json` file: the example input for the workflow | ||
- `.conf` file: the conf file for running Cromwell. | ||
- `.sh` file: the shell script for running the example workflow | ||
|
||
|
||
## The Docker image and Dockerfile can be found here | ||
|
||
[microbiomedata/bbtools:38.96](https://hub.docker.com/r/microbiomedata/bbtools) | ||
[bryce911/spades:3.15.2](https://hub.docker.com/r/bryce911/spades) | ||
[microbiomedata/workflowmeta:1.1.1](https://hub.docker.com/r/microbiomedata/workflowmeta) | ||
|
||
|
||
## Input files | ||
|
||
The inputs for this workflow are as follows: | ||
|
||
1. project name / contig prefix | ||
2. Input fastq | ||
|
||
|
||
``` | ||
{ | ||
"metatranscriptome_assy.input_files":["./test_data/nmdc_xxxxxxx_filtered.fastq.gz"], | ||
"metatranscriptome_assy.proj_id":"nmdc:xxxxxxx" | ||
} | ||
``` | ||
|
||
## Output files | ||
|
||
The output will have one directory named by prefix project name and a bunch of output files, including statistical numbers, status log, and run information. | ||
|
||
The main read count table output is named by prefix.pairedMapped_sorted.bam. | ||
|
||
``` | ||
|-- nmdc_xxxxxxx_bamfiles.tar | ||
|-- nmdc_xxxxxxx_contigs.fna | ||
|-- nmdc_xxxxxxx_pairedMapped.sam.gz | ||
|-- nmdc_xxxxxxx_pairedMapped_sorted.bam | ||
|-- nmdc_xxxxxxx_readlen.txt | ||
|-- nmdc_xxxxxxx_scaffolds.fna | ||
|-- nmdc_xxxxxxx_spades.log | ||
|-- scaffold_stats.json | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"metatranscriptome_assy.input_files":["/expanse/projects/nmdc/edge_app/test/kli/metaT_Assembly/test_data/nmdc_xxxxxxx_filtered.fastq.gz"], | ||
"metatranscriptome_assy.proj_id":"nmdc:xxxxxxx" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v0.0.0 |