Thanks to visit codestin.com
Credit goes to github.com

Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ jobs:
- name: Install pip
run: python -m pip install --upgrade pip

- name: Install nf-core tools
run: python -m pip install nf-core
- name: Install nf-core tools development version
run: python -m pip install --upgrade --force-reinstall git+https://github.com/nf-core/tools.git@dev

- name: Install Nextflow
env:
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/nf-core/bam_create_som_pon_gatk/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords:
- variant_calling
- genomicsdb_workspace
- panel_of_normals
modules:
components:
- gatk4/mutect2
- gatk4/genomicsdbimport
- gatk4/createsomaticpanelofnormals
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ keywords:
- bam
- sam
- cram
modules:
components:
- umitools/dedup
- samtools/index
- samtools/stats
- samtools/idxstats
- samtools/flagstat
- bam_stats_samtools
input:
- ch_bam_bai:
description: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords:
- bam
- contamination
- docounts
modules:
components:
- angsd/docounts
- angsd/contamination
input:
Expand Down
3 changes: 2 additions & 1 deletion subworkflows/nf-core/bam_markduplicates_picard/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ keywords:
- sam
- cram

modules:
components:
- picard/markduplicates
- samtools/index
- samtools/stats
- samtools/idxstats
- samtools/flagstat
- bam_stats_samtools

input:
- ch_bam:
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/nf-core/bam_markduplicates_samtools/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords:
- bam
- sam
- cram
modules:
components:
- samtools/collate
- samtools/fixmate
- samtools/sort
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/nf-core/bam_ngscheckmate/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords:
- qc
- bam
- snp
modules:
components:
- bcftools/mpileup
- ngscheckmate/ncm
input:
Expand Down
4 changes: 2 additions & 2 deletions subworkflows/nf-core/bam_qc_picard/meta.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/subworkflows/yaml-schema.json
name: bam_qc
name: bam_qc_picard
description: Produces comprehensive statistics from BAM file
keywords:
- statistics
Expand All @@ -9,7 +9,7 @@ keywords:
- bam
- sam
- cram
modules:
components:
- picard/collectmultiplemetrics
- picard/collectwgsmetrics
- picard/collecthsmetrics
Expand Down
10 changes: 9 additions & 1 deletion subworkflows/nf-core/bam_rseqc/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,16 @@ keywords:
- readdistribution
- readduplication
- tin
modules:
components:
- rseqc
- rseqc/tin
- rseqc/readduplication
- rseqc/readdistribution
- rseqc/junctionsaturation
- rseqc/junctionannotation
- rseqc/innerdistance
- rseqc/inferexperiment
- rseqc/bamstat
input:
- meta:
type: map
Expand Down
3 changes: 2 additions & 1 deletion subworkflows/nf-core/bam_sort_stats_samtools/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ keywords:
- bam
- sam
- cram
modules:
components:
- samtools/sort
- samtools/index
- samtools/stats
- samtools/idxstats
- samtools/flagstat
- bam_stats_samtools
input:
- meta:
type: map
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/nf-core/bam_split_by_region/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords:
- sam
- cram
- index
modules:
components:
- samtools/view
- samtools/index
input:
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/nf-core/bam_stats_samtools/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords:
- bam
- sam
- cram
modules:
components:
- samtools/stats
- samtools/idxstats
- samtools/flagstat
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ keywords:
- variant_calling
- tumor_only
- filtered_vcf
modules:
components:
- gatk4/mutect2
- gatk4/learnreadorientationmodel
- gatk4/getpileupsummaries
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/subworkflows/yaml-schema.json
name: gatk_tumor_only_somatic_variant_calling
name: bam_tumor_only_somatic_variant_calling_gatk
description: |
Perform variant calling on a single tumor sample using mutect2 tumor only mode.
Run the input bam file through getpileupsummarries and then calculatecontaminationto get the contamination and segmentation tables.
Expand All @@ -13,7 +13,7 @@ keywords:
- variant_calling
- tumor_only
- filtered_vcf
modules:
components:
- gatk4/mutect2
- gatk4/getpileupsummaries
- gatk4/calculatecontamination
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords:
- bam
- cram
- vcf
modules:
components:
- freebayes
- bcftools/sort
- bcftools/index
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords:
- variants
- cram

modules:
components:
- freyja/variants
- freyja/demix
- freyja/update
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/nf-core/bcl_demultiplex/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords:
- bcl2fastq
- demultiplex
- fastq
modules:
components:
- bcl2fastq
- bclconvert
input:
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/nf-core/bed_scatter_bedtools/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords:
- bed
- scatter
- bedtools
modules:
components:
- bedtools/split
input:
- ch_bed:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords:
- bigwig
- clip
- conversion
modules:
components:
- ucsc/bedclip
- ucsc/bedgraphtobigwig
input:
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/nf-core/fasta_binning_concoct/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords:
- binning
- metagenomics
- contigs
modules:
components:
- concoct/cutupfasta
- concoct/concoctcoveragetable
- concoct/concoct
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/nf-core/fasta_clean_fcs/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords:
- cleaning
- assemblies
- fasta
modules:
components:
- fcs/fcsadaptor
- fcs/fcsgx
input:
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/nf-core/fasta_index_dna/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords:
- bwamem2
- dragmap
- snapaligner
modules:
components:
- bowtie2/build
- bwa/index
- bwamem2/index
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/nf-core/fasta_newick_epang_gappa/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords:
- alignment
- fasta
- newick
modules:
components:
- hmmer/hmmbuild
- hmmer/hmmalign
- hmmer/eslalimask
Expand Down
3 changes: 2 additions & 1 deletion subworkflows/nf-core/fastq_align_bowtie2/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ keywords:
- fasta
- genome
- reference
modules:
components:
- bowtie2/align
- samtools/sort
- samtools/index
- samtools/stats
- samtools/idxstats
- samtools/flagstat
- bam_sort_stats_samtools
input:
- meta:
type: map
Expand Down
4 changes: 3 additions & 1 deletion subworkflows/nf-core/fastq_align_bwa/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ keywords:
- fasta
- genome
- reference
modules:
components:
- bwa/mem
- bwa/align
- samtools/sort
- samtools/index
- samtools/stats
- samtools/idxstats
- samtools/flagstat
- bam_sort_stats_samtools
input:
- ch_reads:
description: |
Expand Down
4 changes: 2 additions & 2 deletions subworkflows/nf-core/fastq_align_bwaaln/meta.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/subworkflows/yaml-schema.json
name: "fastq_align_bwaaln_samtools"
name: "fastq_align_bwaaln"
description: Align FASTQ files against reference genome with the bwa aln short-read aligner producing a sorted and indexed BAM files
keywords:
- bwa
Expand All @@ -8,7 +8,7 @@ keywords:
- bwa
- align
- map
modules:
components:
- bwa/aln
- bwa/sampe
- bwa/samse
Expand Down
3 changes: 2 additions & 1 deletion subworkflows/nf-core/fastq_align_chromap/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ keywords:
- chip-seq
- atac-seq
- hic
modules:
components:
- chromap/chromap
- samtools/sort
- samtools/index
- samtools/stats
- samtools/idxstats
- samtools/flagstat
- bam_sort_stats_samtools
input:
- meta:
type: map
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/nf-core/fastq_align_dna/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords:
- bwamem2
- dragmap
- snapaligner
modules:
components:
- bowtie2/align
- bwa/mem
- bwamem2/mem
Expand Down
3 changes: 2 additions & 1 deletion subworkflows/nf-core/fastq_align_hisat2/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ keywords:
- bam
- sam
- cram
modules:
components:
- hisat2/align
- samtools/stats
- samtools/idxstats
- samtools/flagstat
- bam_sort_stats_samtools
input:
- meta:
type: map
Expand Down
3 changes: 2 additions & 1 deletion subworkflows/nf-core/fastq_align_star/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ keywords:
- fasta
- genome
- reference
modules:
components:
- star/align
- samtools/sort
- samtools/index
- samtools/stats
- samtools/idxstats
- samtools/flagstat
- bam_sort_stats_samtools
input:
- ch_reads:
description: |
Expand Down
4 changes: 2 additions & 2 deletions subworkflows/nf-core/fastq_contam_seqtk_kraken/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ keywords:
- statistics
- fastq
- contamination
modules:
- kraken/kraken2
components:
- kraken2/kraken2
- seqtk/sample
input:
- meta:
Expand Down
13 changes: 11 additions & 2 deletions subworkflows/nf-core/fastq_create_umi_consensus_fgbio/meta.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/nf-core/modules/master/subworkflows/yaml-schema.json
name: fgbio_create_umi_consensus
name: fastq_create_umi_consensus_fgbio
description: |
This workflow uses the suite FGBIO to identify and remove UMI tags from FASTQ reads
convert them to unmapped BAM file, map them to the reference genome,
Expand All @@ -10,14 +10,23 @@ keywords:
- samblaster
- samtools
- bwa
modules:
components:
- bwa/index
- bwa/mem
- bwamem2/mem
- bwamem2/index
- fgbio/fastqtobam
- fgbio/groupreadsbyumi
- fgbio/callmolecularconsensusreads
- fgbio/callduplexconsensusreads
- fgbio/filterconsensusreads
- samblaster
- samtools/bam2fq
- samtools/view
- samtools/sort
- samtools/index
- samtools/fastq
- fgbio/zipperbams
input:
- meta:
type: map
Expand Down
Loading