Skip to content

Commit

Permalink
Working on #16 #7 & code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
G-kodes committed Oct 29, 2021
1 parent 57860cb commit e6f4de5
Show file tree
Hide file tree
Showing 9 changed files with 5,145 additions and 65 deletions.
File renamed without changes.
15 changes: 15 additions & 0 deletions config/.schemas/pep.schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
$schema: "https://json-schema.org/draft-06/schema#"
description: A single sample used in this analysis, as provided in the PEP sample sheet
properties:
sample_name:
type: string
description: Sample identifier
dataset:
type: string
description: A string identifier indicating the name of the dataset. This will be used to name the output.
file:
type: string
decription: A string filename for the data file (.vcf.gz + tabix) in the input folder.
reference_genome:
type: string
description: A string identifier for the reference genome. This will be used to access a correspondingly named FATSA file in the resources folder.
Binary file modified config/Clusters.xlsx
Binary file not shown.
37 changes: 35 additions & 2 deletions config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,42 @@
"working-directory": "/nlustre/users/graeme/pipeline-2020",
"queues": [
{
"name": "long",
"queue": "long",
"walltime": "900:00:00",
"memory": "128G"
"memory": "128G",
"cores": 10,
"nodes": 1,
"rules": [
"VALIDATE",
"LIFTOVER",
"ANNOTATE",
"ADMIXTURE",
"COLLATE"
]
},
{
"queue": "normal",
"walltime": "30:00:00",
"memory": "128G",
"cores": 10,
"nodes": 1,
"rules": [
"TRIM_AND_NAME",
"TRANSPILE_CLUSTERS",
"PLINK",
"CALCULATIONS",
"COMPILE_EXCEL"
]
},
{
"queue": "short",
"walltime": "00:30:00",
"memory": "128G",
"cores": 10,
"nodes": 1,
"rules": [
"FILTER"
]
}
]
}
Expand Down
Loading

0 comments on commit e6f4de5

Please sign in to comment.