Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: updated version of pretext workflow developed by Delphine that takes HiFi and HiC as input. #584

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
35d936d
feat: updated version of pretext workflow developed by Delphine that …
Smeds Oct 28, 2024
5ce525d
Fix connections between optional parameters and mandatory inputs,...
Delphine-L Nov 5, 2024
4e20b69
add license, authors, and diverse labels and tags
Delphine-L Nov 12, 2024
b666689
change telomere track height to correspond to the size of the telomeres
Delphine-L Nov 12, 2024
42a7240
Add README and CHANGELOG
Delphine-L Nov 12, 2024
e6c4591
update pretextgraph to fix track display issue, and add parameters to…
Delphine-L Nov 14, 2024
6cc5b23
add new parameter to the README
Delphine-L Nov 14, 2024
851f762
Remove explicit data conversion, it got fixed in galaxy
Delphine-L Nov 20, 2024
0cf305a
Rename folder
Delphine-L Nov 20, 2024
2a0c7bb
add release number and remove parameter from the READMA
Delphine-L Nov 20, 2024
4de0fbc
expose output to be used for Jbrowse2 workflow
Delphine-L Nov 20, 2024
3cf74ab
add tests
Delphine-L Nov 26, 2024
95bd01c
replace dockstore file after cleaning my local repository
Delphine-L Nov 26, 2024
2779664
add Marius comments
Delphine-L Nov 26, 2024
d4ba83e
rename folder
Delphine-L Nov 26, 2024
ce121eb
Make more clear that HiC reads need to be in collections
Delphine-L Nov 26, 2024
a8fc19f
use smaller test data
Delphine-L Nov 26, 2024
c4611ad
Remove unnecessary specification that the input is a collection
Delphine-L Nov 27, 2024
1ff2cd8
add marius comments and more details about the inputs
Delphine-L Nov 27, 2024
306265e
correct typo
Delphine-L Nov 27, 2024
4707632
use even smaller data
Delphine-L Nov 27, 2024
14c03d2
rename output of Gfastats
Delphine-L Nov 27, 2024
425d64c
update tools
Delphine-L Dec 13, 2024
db8b8ad
renaming folder with more descriptive name
Delphine-L Dec 16, 2024
67f1492
change folder name to lower case
Delphine-L Dec 16, 2024
0911819
Improve name of the Workflow
Delphine-L Dec 16, 2024
3264afa
update dockstore file
Delphine-L Dec 16, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
class: File
location: https://zenodo.org/records/14218240/files/Haplotype%202.fasta
filetype: fasta
HiC reads - forward:
Collection of HiC reads - forward:
Delphine-L marked this conversation as resolved.
Show resolved Hide resolved
class: Collection
collection_type: list
elements:
- class: File
identifier: HiC forward reads
location: https://zenodo.org/records/14218240/files/Hi-C%20forward%20reads.fastqsanger.gz
HiC reads - reverse:
Collection of HiC reads - reverse:
class: Collection
collection_type: list
elements:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -322,10 +322,10 @@
"inputs": [
{
"description": "",
"name": "HiC reads - forward"
"name": "Collection of HiC reads - forward"
}
],
"label": "HiC reads - forward",
"label": "Collection of HiC reads - forward",
"name": "Input dataset collection",
"outputs": [],
"position": {
Expand All @@ -349,10 +349,10 @@
"inputs": [
{
"description": "",
"name": "HiC reads - reverse"
"name": "Collection of HiC reads - reverse"
}
],
"label": "HiC reads - reverse",
"label": "Collection of HiC reads - reverse",
"name": "Input dataset collection",
"outputs": [],
"position": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ This workflow generates Hi-C contact maps for diploid genome assemblies in the P
3. **Do you want to add suffixes to the scaffold names?** Select yes if the scaffold names in your assembly do not contain haplotype information.
4. **Haplotype 1 suffix** This suffix will be added to haplotype 1 scaffold names if you selected to add suffixes to the scaffold names.
5. **Haplotype 2 suffix** This suffix will be added to haplotype 2 scaffold names if you selected to add suffixes to the scaffold names.
6. **HiC reads - forward** [fastq] Collection containing the Hi-C forward reads
7. **HiC reads - reverse** [fastq] Collection containing the Hi-C reverse reads
6. **Collection of HiC reads - forward** [fastq] Collection containing the Hi-C forward reads
7. **Collection of HiC reads - reverse** [fastq] Collection containing the Hi-C reverse reads
Delphine-L marked this conversation as resolved.
Show resolved Hide resolved
8. **Do you want to trim the Hi-C data?** If *yes*, remove 5bp at the end of Hi-C reads. Use with some Arima Hi-C if the Hi-C map looks "noisy".
Delphine-L marked this conversation as resolved.
Show resolved Hide resolved
9. **Telomere repeat to suit species** Expected value of the repeated sequences in the telomeres. Default value [CCCTAA] is suited to vertebrates.
10. **PacBio reads collection** [fastq] Collection of PacBio reads.
Delphine-L marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
Loading