Skip to content

Commit e15f141

Browse files
authored
Merge pull request #514 from planemo-autoupdate/workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8
Updating workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8 from 0.2.7 to 0.2.8
2 parents 3f5152e + 2d37568 commit e15f141

File tree

4 files changed

+741
-364
lines changed

4 files changed

+741
-364
lines changed

workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.3] 2025-01-30
4+
5+
### Changes
6+
7+
- Hi-C data are now input as collections
8+
- Add optional trimming of Hi-C data
9+
- Set Metaeuk as Busco gene predictor
10+
11+
### Automatic update
12+
- `toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.6+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/bgruening/gfastats/gfastats/1.3.9+galaxy0`
13+
- `toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.5.0+galaxy0` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/busco/busco/5.8.0+galaxy0`
14+
- `toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.0` was updated to `toolshed.g2.bx.psu.edu/repos/devteam/column_maker/Add_a_column1/2.1`
15+
- `toolshed.g2.bx.psu.edu/repos/iuc/pretext_snapshot/pretext_snapshot/0.0.3+galaxy2` was updated to `toolshed.g2.bx.psu.edu/repos/iuc/pretext_snapshot/pretext_snapshot/0.0.4+galaxy0`
16+
317

418
## [0.2.8] 2024-09-12
519

workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/README.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,23 @@ Example of trajectory :
99

1010
## Inputs
1111

12-
1. Scaffolded assembly [fasta]
13-
2. Database for busco lineage (recommended: latest)
14-
3. Busco lineage (recommended: vertebrata)
15-
4. Concatenated HiC forward reads [fastq]
16-
5. Concatenated HiC reverse reads [fastq]
17-
6. Restriction enzyme sequence (recommended for VGP data: Arima Hi-C 2.0)
18-
7. Estimated genome size [txt]
19-
8. Haplotype name
12+
1. Scaffolded assembly [gfa]
13+
2. Name of the haplotype
14+
3. HiC forward reads [fastq]
15+
4. HiC reverse reads [fastq]
16+
5. Trim Hi-C data? If `yes` Trim 5 bases at the beginning of each read. Use with Arima Hi-C data if the Hi-C map looks "noisy".
17+
6. Database for busco lineage (recommended: latest)
18+
7. Busco lineage (recommended: vertebrata)
19+
8. Restriction enzyme sequence (recommended for VGP data: Arima Hi-C 2.0)
20+
9. Estimated genome size [txt]
2021

2122

2223
### Outputs
2324

2425
1. Scaffolds in [fasta] and [gfa] format
25-
2. QC: Assembly statistics
26-
3. QC: Nx plot
27-
4. QC: Size plot
28-
5. QC: BUSCO report
29-
6. QC: Pretext Maps before and after scaffolding
26+
2. If you selected `yes` for Hi-C trimming, the trimmed collections of Hi-C reads
27+
3. QC: Assembly statistics
28+
4. QC: Nx plot
29+
5. QC: Size plot
30+
6. QC: BUSCO report
31+
7. QC: Pretext Maps before and after scaffolding

workflows/VGP-assembly-v2/Scaffolding-HiC-VGP8/Scaffolding-HiC-VGP8-tests.yml

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,22 @@
44
class: File
55
location: https://zenodo.org/records/10037496/files/input%20GFA.gfa1?download=1
66
filetype: gfa1
7-
HiC Forward reads:
8-
class: File
9-
location: https://zenodo.org/records/10037496/files/HiC%20Forward%20reads.fastqsanger.gz?download=1
10-
filetype: fastqsanger.gz
11-
HiC reverse reads:
12-
class: File
13-
location: https://zenodo.org/records/10037496/files/HiC%20reverse%20reads.fastqsanger.gz?download=1
14-
filetype: fastqsanger.gz
7+
Hi-C forward reads:
8+
class: Collection
9+
collection_type: list
10+
elements:
11+
- class: File
12+
identifier: HiC-Forward-reads
13+
location: https://zenodo.org/records/10037496/files/HiC%20Forward%20reads.fastqsanger.gz?download=1
14+
filetype: fastqsanger.gz
15+
Hi-C reverse reads:
16+
class: Collection
17+
collection_type: list
18+
elements:
19+
- class: File
20+
identifier: HiC-Reverse-reads
21+
location: https://zenodo.org/records/10037496/files/HiC%20reverse%20reads.fastqsanger.gz?download=1
22+
filetype: fastqsanger.gz
1523
Estimated genome size - Parameter File:
1624
class: File
1725
location: https://zenodo.org/records/10037496/files/Estimated%20genome%20size%20-%20Parameter%20File.txt?download=1
@@ -20,25 +28,26 @@
2028
Lineage: vertebrata_odb10
2129
Restriction enzymes: arima2
2230
Haplotype: hap1
31+
Trim Hi-C Data?: false
2332
outputs:
2433
"Reconciliated Scaffolds: gfa":
2534
asserts:
2635
has_n_lines:
27-
n: 169
36+
n: 168
2837
'Reconciliated Scaffolds: fasta':
2938
asserts:
3039
has_n_lines:
31-
n: 168
40+
n: 166
3241
has_text:
3342
text: "scaffold_53.hap1"
3443
Busco Summary:
3544
asserts:
3645
has_text:
37-
text: "C:1.0%[S:1.0%,D:0.0%],F:0.4%,M:98.6%,n:3354"
46+
text: "C:1.1%[S:1.0%,D:0.0%],F:0.4%,M:98.5%,n:3354"
3847
Assembly Statistics for s2:
3948
asserts:
4049
has_line:
41-
line: "# scaffolds 84"
50+
line: "# scaffolds 83"
4251
Nx Plot:
4352
asserts:
4453
has_size:

0 commit comments

Comments
 (0)