Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Q
QuaC
Manage
Activity
Members
Labels
Plan
Issues
15
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
center-for-computational-genomics-and-data-science
public
QuaC
Commits
da33c7c3
Commit
da33c7c3
authored
4 years ago
by
Manavalan Gajapathy
Browse files
Options
Downloads
Patches
Plain Diff
path fix; config fix; common env
parent
729c88d7
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
configs/env/common.yaml
+15
-0
15 additions, 0 deletions
configs/env/common.yaml
configs/workflow.yaml
+2
-5
2 additions, 5 deletions
configs/workflow.yaml
workflow/rules/mosdepth.smk
+3
-3
3 additions, 3 deletions
workflow/rules/mosdepth.smk
with
20 additions
and
8 deletions
configs/env/common.yaml
0 → 100644
+
15
−
0
View file @
da33c7c3
name
:
quac_common
channels
:
-
conda-forge
-
bioconda
dependencies
:
-
python==3.7.6
-
pandas==1.2.2
-
numpy==1.19.5
-
xlrd==1.2.0
-
ped_parser==1.6.6
-
fire==0.3.1
-
colorlog==4.7.2
-
black==20.8b1
This diff is collapsed.
Click to expand it.
configs/workflow.yaml
+
2
−
5
View file @
da33c7c3
projects_path
:
"
/data/project/worthey_lab/projects/"
project_names
:
"
MuscDyst_SU_MAlexander,CF_CFF_PFarrell,CF_TLOAF_PFarrell"
# project_names: "MuscDyst_SU_MAlexander,CF_CFF_PFarrell,CF_TLOAF_PFarrell,EDS3_unkn_DGreenspan,UDN_Phase1_EAWorthey"
project_names
:
"
CF_CFF_PFarrell"
ref
:
"
/data/project/worthey_lab/datasets_central/human_reference_genome/processed/GRCh38/no_alt_rel20190408/GCA_000001405.15_GRCh38_no_alt_analysis_set.fna"
somalier
:
tool
:
"
/data/project/worthey_lab/projects/experimental_pipelines/mana/tools/somalier/0.2.12/somalier"
...
...
@@ -10,8 +11,4 @@ goleft:
tool
:
"
/data/project/worthey_lab/projects/experimental_pipelines/mana/tools/goleft/0.2.4/goleft"
verifyBamID
:
svd_dat
:
"
/data/project/worthey_lab/projects/experimental_pipelines/mana/test_tools/verifyBamID/tool/VerifyBamID-2.0.1/resource/1000g.phase3.100k.b38.vcf.gz.dat"
haplocheck
:
mutserve_tool
:
"
/data/project/worthey_lab/projects/experimental_pipelines/mana/test_tools/haplocheck/mutserve/mutserve"
mt_ref
:
"
/data/project/worthey_lab/projects/experimental_pipelines/mana/test_tools/haplocheck/mutserve/rCRS.fasta"
haplocheck_tool
:
"
/data/project/worthey_lab/projects/experimental_pipelines/mana/test_tools/haplocheck/tool/haplocheck"
logs_path
:
"
logs/rule_logs/"
This diff is collapsed.
Click to expand it.
workflow/rules/mosdepth.smk
+
3
−
3
View file @
da33c7c3
...
...
@@ -3,8 +3,8 @@ rule mosdepth_coverage:
bam = PROJECTS_PATH / "{project}" / "analysis" / "{sample}" / "bam" / "{sample}.bam",
bam_index = PROJECTS_PATH / "{project}" / "analysis" / "{sample}" / "bam" / "{sample}.bam.bai",
output:
dist =
PROCESSED
_DIR / "mosdepth/{project}/{sample}.mosdepth.global.dist.txt",
summary =
PROCESSED
_DIR / "mosdepth/{project}/{sample}.mosdepth.summary.txt",
dist =
INTERIM
_DIR / "mosdepth/{project}/{sample}.mosdepth.global.dist.txt",
summary =
INTERIM
_DIR / "mosdepth/{project}/{sample}.mosdepth.summary.txt",
log:
LOGS_PATH / "{project}/mosdepth_coverage-{sample}.log"
message:
...
...
@@ -27,7 +27,7 @@ rule mosdepth_coverage:
rule mosdepth_plot:
input:
dist = lambda wildcards: expand(str(
PROCESSED
_DIR / "mosdepth" / wildcards.project / "{sample}.mosdepth.global.dist.txt"),
dist = lambda wildcards: expand(str(
INTERIM
_DIR / "mosdepth" / wildcards.project / "{sample}.mosdepth.global.dist.txt"),
sample=SAMPLES[wildcards.project]),
script = WORKFLOW_PATH / "src/mosdepth/v0.3.1/plot-dist.py",
output:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment