Skip to content

Commit

Permalink
added small comment to local modules
Browse files Browse the repository at this point in the history
  • Loading branch information
fmalmeida committed Oct 30, 2024
1 parent 18cfdd7 commit 079bb7e
Show file tree
Hide file tree
Showing 11 changed files with 57 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modules/local/adata_barcodes.nf
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
process ADATA_BARCODES {

//
// Module from nf-core/scdownstream.
// This module performs the subset of the h5ad file to only contain barcodes that passed emptydrops filter with cellbender
//

tag "$meta.id"
label 'process_single'

Expand Down
5 changes: 5 additions & 0 deletions modules/local/alevinqc.nf
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
process ALEVINQC {

//
// This module executes alevinfry QC reporting tool on alevin results
//

tag "$meta.id"
label 'process_low'

Expand Down
5 changes: 5 additions & 0 deletions modules/local/anndatar_convert.nf
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
process ANNDATAR_CONVERT {

//
// This module uses the anndata R package to convert h5ad files in different formats
//

tag "${meta.id}"

label 'process_medium'
Expand Down
6 changes: 6 additions & 0 deletions modules/local/concat_h5ad.nf
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
process CONCAT_H5AD {

//
// This module concatenates all h5ad, per type (raw, filtered, etc.) files generated during pipeline execution
//


tag "${meta.id}"

label 'process_medium'
Expand Down
5 changes: 5 additions & 0 deletions modules/local/gffread_transcriptome.nf
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
process GFFREAD_TRANSCRIPTOME {

//
// This module uses gffread to filter input to generate a transcripts fasta
//

tag "${genome_fasta}"
label 'process_low'

Expand Down
5 changes: 5 additions & 0 deletions modules/local/gtf_gene_filter.nf
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
process GTF_GENE_FILTER {

//
// This module executes a custom script to filter input gtf to contain only annotations present in input genome
//

tag "$fasta"
label 'process_low'

Expand Down
5 changes: 5 additions & 0 deletions modules/local/mtx_to_h5ad.nf
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
process MTX_TO_H5AD {

//
// This module executes different conversion template scripts (per aligner) for converting output mtx files into h5ad files
//

tag "$meta.id"
label 'process_medium'

Expand Down
5 changes: 5 additions & 0 deletions modules/local/parse_cellrangermulti_samplesheet.nf
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
process PARSE_CELLRANGERMULTI_SAMPLESHEET {

//
// This module contains a custom script for checking special cellranger multi samplesheet
//

label 'process_low'
publishDir = [ enabled: false ]

Expand Down
5 changes: 5 additions & 0 deletions modules/local/simpleaf_index.nf
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
process SIMPLEAF_INDEX {

//
// This module executes simpleaf to generate alevin genome index
//

tag "$transcript_gtf"
label "process_medium"

Expand Down
5 changes: 5 additions & 0 deletions modules/local/simpleaf_quant.nf
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
process SIMPLEAF_QUANT {

//
// This module executes simpleaf to perform quantification with alevin
//

tag "$meta.id"
label 'process_high'

Expand Down
5 changes: 5 additions & 0 deletions modules/local/star_align.nf
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
process STAR_ALIGN {

//
// This module executes STAR align quantification
//

tag "$meta.id"
label 'process_high'

Expand Down

0 comments on commit 079bb7e

Please sign in to comment.