-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from jolespin/devel
updated logo and docs
- Loading branch information
Showing
16 changed files
with
629 additions
and
110 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,44 @@ | ||
|
||
|
||
```mermaid | ||
%%{init: { "flowchart": { "curve": "linear" } } }%% | ||
%% Available curve styles include basis, bumpX, bumpY, cardinal, catmullRom, linear, monotoneX, monotoneY, natural, step, stepAfter, and stepBefore. %%% | ||
graph LR | ||
subgraph "`**assembly**`" | ||
%% Programs | ||
METASPADES["metaSPAdes"] | ||
SAMTOOLS["samtools"] | ||
BOWTIE2_INDEX["bowtie2-build"] | ||
BOWTIE2["bowtie2"] | ||
FEATURECOUNTS["featureCounts"] | ||
SEQKIT["seqkit stats"] | ||
%% inputs | ||
READS[\"cleaned_1/2.fastq.gz"/] | ||
%% outputs | ||
STATS["statistics.tsv"] | ||
%% FastP | ||
READS --repair.sh--> METASPADES | ||
METASPADES --> ASSEMBLY["scaffolds.fasta"] | ||
ASSEMBLY --"fasta_to_saf.py"--> SAF["scaffolds.fasta.saf"] | ||
%% Bowtie2 | ||
ASSEMBLY --> BOWTIE2_INDEX --> INDEX["scaffolds.fasta.*.bt2"] | ||
READS & INDEX --> BOWTIE2 --> SAMTOOLS --> BAM["mapped.sorted.bam"] | ||
%% featureCounts | ||
BAM & SAF --> FEATURECOUNTS --> COUNTS["counts.tsv"] | ||
ASSEMBLY --> SEQKIT --> STATS | ||
end | ||
``` |
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,65 @@ | ||
|
||
|
||
```mermaid | ||
%%{init: { "flowchart": { "curve": "linear" } } }%% | ||
%% Available curve styles include basis, bumpX, bumpY, cardinal, catmullRom, linear, monotoneX, monotoneY, natural, step, stepAfter, and stepBefore. %%% | ||
graph TD | ||
%% Programs | ||
COVERM["coverm"] | ||
PYRODIGAL["Pyrodigal"] | ||
METABAT2["Metabat2"] | ||
MAXBIN2_107["MaxBin2(MarkerSet=107)"] | ||
MAXBIN2_40["MaxBin2(MarkerSet=40)"] | ||
CONCOCT["CONCOCT"] | ||
DASTOOL["DAS_Tool"] | ||
TIARA["Tiara"] | ||
CHECKM2["CheckM2"] | ||
BARRNAP["barrnap"] | ||
TRNASCANSE["tRNAscan-SE"] | ||
FEATURECOUNTS["featureCounts"] | ||
SEQKIT["seqkit stats"] | ||
%% inputs | ||
ASSEMBLY["scaffolds.fasta"] | ||
BAM["mapped.sorted.bam"] | ||
%% outputs | ||
STATS["statistics.tsv"] | ||
BAM --> COVERM --> COVERAGE["coverage.tsv"] | ||
ASSEMBLY --> PYRODIGAL --> PROTEINS["proteins.fasta"] & CDS["cds.fasta"] & GFF["gene_models.gff"] | ||
subgraph "`**_N_ iterative binning-prokaryotic**`" | ||
ASSEMBLY & COVERAGE --> METABAT2 --> MAGS_METABAT["MAGs<SUB>Metabat2</SUB>"] | ||
ASSEMBLY & COVERAGE --> MAXBIN2_107 --> MAGS_MAXBIN2_107["MAGs<SUB>MaxBin2_107</SUB>"] | ||
ASSEMBLY & COVERAGE --> MAXBIN2_40 --> MAGS_MAXBIN2_40["MAGs<SUB>MaxBin2_40</SUB>"] | ||
ASSEMBLY & COVERAGE --> CONCOCT --> MAGS_CONCOCT["MAGs<SUB>CONCOCT</SUB>"] | ||
MAGS_MAXBIN2_107 & MAGS_MAXBIN2_40 & MAGS_CONCOCT & PROTEINS --> DASTOOL | ||
DASTOOL --> CANDIDATE_MAGS["MAGs<SUB>Candidate</SUB>"] | ||
CANDIDATE_MAGS --> TIARA | ||
TIARA --> MAGS_P["MAGs<SUB>Prokaryotic</SUB>"] | ||
TIARA --x MAGS_E["MAGs<SUB>Eukaryotic</SUB>"] | ||
MAGS_P & PROTEINS --> CHECKM2 | ||
CHECKM2 --> MAGS_PASSED["MAGs<SUB>Passed</SUB>"] | ||
CHECKM2 --x MAGS_FAILED["MAGs<SUB>Failed</SUB>"] --> UNBINNED["unbinned.fasta"] --> BEGINNING["Repeat with unbinned.fasta"] | ||
end | ||
MAGS_PASSED --> BARRNAP --> RRNA["MAGS.rRNA.fasta"] | ||
MAGS_PASSED --> TRNASCANSE --> TRNA["MAGS.TRNA.fasta"] | ||
MAGS_PASSED & CDS & RRNA & TRNA --> SEQKIT --> STATS | ||
``` |
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,114 @@ | ||
|
||
|
||
```mermaid | ||
%%{init: { "flowchart": { "curve": "linear" } } }%% | ||
%% Available curve styles include basis, bumpX, bumpY, cardinal, catmullRom, linear, monotoneX, monotoneY, natural, step, stepAfter, and stepBefore. %%% | ||
graph TD | ||
subgraph "`**preprocessing**`" | ||
%% modules | ||
PREPROCESS_SHORT(["`_preprocess-short_`"]) | ||
PREPROCESS_LONG(["`_preprocess-long_`"]) | ||
%% inputs | ||
R1[\"Illumina_1.fastq.gz"/] | ||
R2[\"Illumina_2.fastq.gz"/] | ||
LONG[\"ONT|PacBio.fastq.gz"/] | ||
%% databases | ||
CONTAMINATION[(Contamination)] | ||
KMER[(K-mer Profiles)] | ||
%% --- | ||
%% preprocess/-long | ||
R1 & R2 --> PREPROCESS_SHORT | ||
CONTAMINATION -.-> PREPROCESS_SHORT | ||
KMER -.-> PREPROCESS_SHORT | ||
LONG --> PREPROCESS_LONG | ||
CONTAMINATION -.-> PREPROCESS_LONG | ||
KMER -.-> PREPROCESS_LONG | ||
end | ||
subgraph "`**assembly**`" | ||
%%inputs | ||
ASSEMBLY(["`_assembly|assembly-long_`"]) | ||
%% outputs | ||
ASSEMBLY_FASTA[["assembly.fasta"]] | ||
BAM[["mapped.sorted.bam"]] | ||
%% assembly/-long | ||
PREPROCESS_SHORT --cleaned_1/2.fastq.gz--> ASSEMBLY | ||
PREPROCESS_LONG --cleaned.fastq.gz--> ASSEMBLY | ||
ASSEMBLY --> ASSEMBLY_FASTA & BAM | ||
end | ||
%% -- | ||
subgraph "`**binning**`" | ||
%% modules | ||
BINNING_VIRAL(["`_binning-viral_`"]) | ||
BINNING_PROKARYOTIC(["`_binning-prokaryotic_`"]) | ||
BINNING_EUKARYOTIC(["`_binning-eukaryotic_`"]) | ||
%% outputs | ||
GENOMES_AND_GENE_MODELS("Genomes & Gene Models") | ||
GENOMES[["Genomes"]] | ||
GENE_MODELS[["Gene Models"]] | ||
%% databases | ||
%%CHECKV[("CheckV")]--> BINNING_VIRAL | ||
%%GENOMAD[("geNomad")]--> BINNING_VIRAL | ||
%% -- | ||
%% binning-viral | ||
ASSEMBLY_FASTA & BAM --> BINNING_VIRAL | ||
%% binning-prokaryotic | ||
BINNING_VIRAL --unbinned.fasta--> BINNING_PROKARYOTIC | ||
BAM --> BINNING_PROKARYOTIC | ||
%% binning-eukaryotic | ||
BINNING_PROKARYOTIC --unbinned.fasta--> BINNING_EUKARYOTIC | ||
BAM --> BINNING_EUKARYOTIC | ||
%% coverage | ||
%% COVERAGE("coverage|coverage-long") | ||
BINNING_VIRAL & BINNING_PROKARYOTIC & BINNING_EUKARYOTIC --"genome-resolved"--> GENOMES_AND_GENE_MODELS | ||
GENOMES_AND_GENE_MODELS --> GENOMES & GENE_MODELS | ||
end | ||
%% -- | ||
subgraph "`**clustering**`" | ||
%% modules | ||
CLUSTER("`_cluster_`") | ||
%% output | ||
PROTEIN_CLUSTERS[["SLC-specific Protein Clusters (SSPC)"]] | ||
GENOME_CLUSTERS[["Species-level Clusters (SLC)"]] | ||
%% cluster | ||
GENOMES & GENE_MODELS--> CLUSTER | ||
CLUSTER --> GENOME_CLUSTERS | ||
CLUSTER --> PROTEIN_CLUSTERS | ||
end | ||
subgraph "`**annotation**`" | ||
ANNOTATE("`_annotate_`") | ||
GENE_MODELS & PROTEIN_CLUSTERS --> ANNOTATE | ||
end | ||
``` |
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,53 @@ | ||
|
||
|
||
```mermaid | ||
%%{init: { "flowchart": { "curve": "linear" } } }%% | ||
%% Available curve styles include basis, bumpX, bumpY, cardinal, catmullRom, linear, monotoneX, monotoneY, natural, step, stepAfter, and stepBefore. %%% | ||
graph LR | ||
subgraph "`**preprocess**`" | ||
%% Programs | ||
FASTP["FastP"] | ||
BOWTIE2["Bowtie2"] | ||
SEQKIT["seqkit stats"] | ||
BBDUK["BBDuk"] | ||
%% Databases | ||
CONTAMINATION[("Contamination")] | ||
KMERS[("K-mer Profiles")] | ||
%% inputs | ||
READS[\"Illumina_1/2.fastq.gz"/] | ||
%% outputs | ||
STATS["statistics.tsv"] | ||
%% FastP | ||
READS --> FASTP | ||
FASTP --"trimmed_1/2.fastq.gz"--> BOWTIE2 | ||
%% Bowtie2 | ||
CONTAMINATION --> BOWTIE2 | ||
BOWTIE2 --"cleaned_1/2.fastq.gz"--> BBDUK | ||
BOWTIE2 --"contaminated_1/2.fastq.gz"--> STATS | ||
%%BBDuk | ||
KMERS --> BBDUK | ||
READS --> SEQKIT | ||
BOWTIE2 --> SEQKIT | ||
BBDUK --"cleaned_1/2.non-kmer_hits.fastq.gz"--> SEQKIT | ||
BBDUK --"cleaned_1/2.kmer_hits.fastq.gz"--> SEQKIT | ||
SEQKIT --> STATS | ||
end | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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