Skip to content

Commit ff0e5ca

Browse files
committed
Fixed linting issues
1 parent b872b55 commit ff0e5ca

File tree

2 files changed

+7
-17
lines changed

2 files changed

+7
-17
lines changed

docs/output.md

+5-17
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ The pipeline is built using [Nextflow](https://www.nextflow.io/) and processes d
1818
- [GUNZIP](#gunzip) - Decompress FLNC fastas (uLTRA path only)
1919
- [ULTRA or MINIMAP2](#ultra-minimap2) - Map FLNCs on genome
2020
- [BIOPERL](#bioperl) - Remove spurious alignments (uLTRA path only, [Issue #11](https://github.com/ksahlin/ultra/issues/11))
21-
- [SAMTOOLS SORT](#samtools-sort) - Sort alignment and convert sam file into bam file
2221
- [TAMA FILE LIST](#tama-file-list) - Prepare list file for TAMA collapse
2322
- [TAMA COLLAPSE](#tama-collapse) - Clean gene models
2423
- [TAMA MERGE](#tama-merge) - Merge all annotations into one for each sample with TAMA merge
@@ -138,24 +137,12 @@ The pipeline is built using [Nextflow](https://www.nextflow.io/) and processes d
138137

139138
[BIOPERL](https://bioperl.org/) Some CIGAR string sometimes with a gap (N). This can happen when using GFF file converted to GTF file. See [Issue #11](https://github.com/ksahlin/ultra/issues/11) from uLTRA repo.
140139

141-
### SAMTOOLS SORT
142-
143-
<details markdown="1">
144-
<summary>Output files</summary>
145-
146-
- `07_SAMTOOLS_SORT/`
147-
- `<sample>.chunk<X>_sorted.bam`: The sorted aligned reads.
148-
149-
</details>
150-
151-
[SAMTOOLS SORT](http://www.htslib.org/doc/samtools-sort.html) sort the aligned reads and convert the sam file in bam file.
152-
153140
### TAMA COLLAPSE
154141

155142
<details markdown="1">
156143
<summary>Output files</summary>
157144

158-
- `08_GSTAMA_COLLAPSE/`
145+
- `07_GSTAMA_COLLAPSE/`
159146
- `<sample>.chunk<X>_collapsed.bed`: This is a bed12 format file containing the final collapsed version of your transcriptome
160147
- `<sample>.chunk<X>_local_density_error.txt`: This file contains the log of filtering for local density error around the splice junctions
161148
- `<sample>.chunk<X>_polya.txt`: This file contains the reads with potential poly A truncation
@@ -175,8 +162,9 @@ The pipeline is built using [Nextflow](https://www.nextflow.io/) and processes d
175162
<details markdown="1">
176163
<summary>Output files</summary>
177164

178-
- `09_GSTAMA_FILELIST/`
165+
- `08_GSTAMA_FILELIST/`
179166
- `<sample>.tsv`: A tsv listing bed files to merge with TAMA merge
167+
- `all_samples.tsv`: A tsv listing bed files from all samples to merge with TAMA merge
180168

181169
</details>
182170

@@ -187,15 +175,15 @@ TAMA FILELIST is a home script for generating input file list for TAMA merge.
187175
<details markdown="1">
188176
<summary>Output files</summary>
189177

190-
- `10_GSTAMA_MERGE/`
178+
- `09_GSTAMA_MERGE/`
191179
- `<sample>.bed`: This is the main merged annotation file.
192180
- `<sample>_gene_report.txt`: This contains a report of the genes from the merged file.
193181
- `<sample>_merge.txt`: This contains a bed12 format file which shows the coordinates of each input transcript matched to the merged transcript ID.
194182
- `<sample>_trans_report.txt`: This contains the source information for each merged transcript.
195183

196184
</details>
197185

198-
[TAMA MERGE](https://github.com/GenomeRIK/tama/wiki/Tama-Merge) TAMA Merge is a tool that allows you to merge multiple transcriptomes while maintaining source information.
186+
[TAMA MERGE](https://github.com/GenomeRIK/tama/wiki/Tama-Merge) TAMA Merge is a tool that allows you to merge multiple transcriptomes while maintaining source information. When there are two or more samples, output files corresponding to `all_samples` are also stored if `--tama_merge_all` parameter is set.
199187

200188
### MultiQC
201189

workflows/isoseq.nf

+2
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ workflow ISOSEQ {
209209
}
210210

211211
if (params.aligner == "ultra") {
212+
ch_versions = ch_versions.mix(GUNZIP.out.versions)
212213
ch_versions = ch_versions.mix(GNU_SORT.out.versions)
213214
ch_versions = ch_versions.mix(ULTRA_INDEX.out.versions)
214215
ch_versions = ch_versions.mix(ULTRA_ALIGN.out.versions)
@@ -219,6 +220,7 @@ workflow ISOSEQ {
219220

220221
ch_versions = ch_versions.mix(GSTAMA_COLLAPSE.out.versions)
221222
ch_versions = ch_versions.mix(GSTAMA_MERGE.out.versions)
223+
ch_versions = ch_versions.mix(GSTAMA_MERGE_ALL.out.versions)
222224

223225
//
224226
// MODULE: CUSTOM_DUMPSOFTWAREVERSIONS

0 commit comments

Comments
 (0)