Skip to content

Commit

Permalink
Pulled from dev
Browse files Browse the repository at this point in the history
  • Loading branch information
nschcolnicov committed Oct 8, 2024
1 parent 48337c8 commit 5c31fea
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ jobs:
nf-test test \
--ci \
--shard ${{ matrix.shard }}/${{ env.SHARDS }} \
--changed-since HEAD^ \
--profile "+${{ matrix.profile }}" \
--filter pipeline \
--junitxml=test.xml
Expand Down
2 changes: 1 addition & 1 deletion nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
},
"save_intermediates": {
"type": "boolean",
"description": "Save all intermediate files (e.g. fastq, bams) to output directory",
"description": "Save all intermediate files (e.g. fastq, bams) of all steps of the pipeline to output directory",
"fa_icon": "fas fa-save"
}
}
Expand Down
5 changes: 1 addition & 4 deletions subworkflows/local/mirna_quant.nf
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,7 @@ workflow MIRNA_QUANT {
.map{ gtf, species -> [ [id:species.toString()], gtf, species ] }
.collect()

BAM_STATS_MIRNA_MIRTOP(
BOWTIE_MAP_SEQCLUSTER.out.bam,
FORMAT_HAIRPIN.out.formatted_fasta,
ch_mirna_gtf_species )
BAM_STATS_MIRNA_MIRTOP(BOWTIE_MAP_SEQCLUSTER.out.bam, FORMAT_HAIRPIN.out.formatted_fasta, ch_mirna_gtf_species )

ch_mirtop_logs = BAM_STATS_MIRNA_MIRTOP.out.stats_log
ch_versions = ch_versions.mix(BAM_STATS_MIRNA_MIRTOP.out.versions)
Expand Down

0 comments on commit 5c31fea

Please sign in to comment.