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

Hangsu phasing #417

Draft
wants to merge 26 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
revise MergePhasedVCF
  • Loading branch information
hangsuUNC committed Jan 22, 2024
commit 6479a4b9fb5a9c897460bb6d2f0cf67d999fa5dd
7 changes: 6 additions & 1 deletion wdl/pipelines/PacBio/Utility/MergePhasedVCF.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,16 @@ workflow MergePhasedVCF{
File reference_fasta_fai
}
call FindFiles{input: sampleFolder = SampleFolder}
call VU.CollectDefinitions as CD {
input:
vcfs = FindFiles.vcfFiles
}
call VU.MergeAndSortVCFs as Merge {
input:
vcfs = FindFiles.vcfFiles,
ref_fasta_fai = reference_fasta_fai,
prefix = Samplename
prefix = Samplename,
header_definitions_file = CD.union_definitions
}

output{
Expand Down
Loading