-
Notifications
You must be signed in to change notification settings - Fork 14
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
Phaseimpute template update and pass first test #5
Conversation
And remove this step from phaseimpute and put it in the utils_phaseimpute subworkflow
Improve schema and config Add map channel
assets/chr_rename_add.txt
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
look like it's just adding chr to the chromosome, any other way to do so, that doesn't rely on such a list?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That could be a module using a fai ?
assets/chr_rename_del.txt
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
similar question for this one
Co-authored-by: Maxime U Garcia <[email protected]>
Co-authored-by: Maxime U Garcia <[email protected]>
Co-authored-by: Maxime U Garcia <[email protected]>
Co-authored-by: Maxime U Garcia <[email protected]>
@@ -22,7 +22,7 @@ params { | |||
map = "/groups/dog/llenezet/test-datasets/data/genetic_maps.b38/chr21.b38.gmap.gz" | |||
genome = "GRCh38" | |||
fasta = "/groups/dog/llenezet/script/phaseimpute/data/genome.fa" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel like these path are a bit too specific to your system, but that can be fix later on, just don't forget about it, otherwise the megatests will fail badly
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For sure.
I'm currently working on the creation of such dataset
}, | ||
"bedtools/makewindows": { | ||
"branch": "master", | ||
"git_sha": "911696ea0b62df80e900ef244d7867d177971f73", | ||
"git_sha": "3b248b84694d1939ac4bb33df84bf6233a34d668", | ||
"installed_by": ["vcf_phase_shapeit5"] | ||
}, | ||
"custom/dumpsoftwareversions": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not deleted yet?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@maxulysse what do you mean by not deleted yet ?
- def annotations_file = annotations ? "--annotations ${annotations}" : '' | ||
+ def header_file = header_lines ? "--header-lines ${header_lines}" : '' | ||
+ def annotations_file = annotations ? "--annotations ${annotations}" : '' | ||
+ def rename_chr_cmd = rename_chr ? "--rename-chrs ${rename_chr}" : '' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh I see, this is where it's coming from
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe that can be added to the module then
Update fasta use with genome
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Phaseimpute template update and pass first test
Remember that PRs should be made against the dev branch, unless you're preparing a pipeline release.
Learn more about contributing: CONTRIBUTING.md
-->
PR checklist
nf-core lint
).nf-test test main.nf.test -profile test,docker
).nextflow run . -profile debug,test,docker --outdir <OUTDIR>
).docs/usage.md
is updated.docs/output.md
is updated.CHANGELOG.md
is updated.README.md
is updated (including new tool citations and authors/contributors).