Skip to content

Commit

Permalink
adding config used for testing the test dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
LiaOb21 committed Feb 22, 2024
1 parent daf284c commit c6eeafe
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions config/config_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# config.yaml

# Path to hifi reads
hifi_path: "resources/raw_hifi/"

# Path to hic reads
hic_path: "resources/raw_hic/"

# Customisable parameters for nanoplot
nanoplot:
t: 4 # number of threads

# Customisable parameters for fastp
fastp:
t: 4 # number of threads
cut_window_size: 4
cut_mean_quality: 20
optional_params:
"--detect_adapter_for_pe": "true"
"--cut_front": "true"
"--cut_tail": "true"
"-p": "false"

# Customisable parameters for kmc
kmc:
k: 21 # kmer size, it will be the same used for genomescope2
t: 4 # number of threads
ci: 1 # exclude k-mers occurring less than <value> times (default: 2)
cs: 100000 #maximal value of a counter (default: 255)

# Customisable parameters for kmc_tools transform
kmc_tools:
cx: 100000 # exclude k-mers occurring more of than <value> times

# Customisable parameters for oatk
oatk:
k: 1001 # kmer size [1001]
c: 150 # minimum kmer coverage [3]
t: 4 # number of threads [1]
m: "resources/oatkDB/dikarya_mito.fam" # mitochondria gene annotation HMM profile database [NULL]
optional_params:
"-p": "" # to use for species that have a plastid db

# Customisable parameters for minimap2
minimap2:
t: 4 # number of threads

# Customisable parameters for hifiasm
hifiasm:
t: 4 # number of threads
optional_params:
"-f": "0" # used for small datasets
"-l": "" # purge level. 0: no purging; 1: light; 2/3: aggressive [0 for trio; 3 for unzip]
"--ul": "resources/raw_ont/ont_test_SPSC01_SRR27947616_PRJNA1075684.fastq.gz"
"--h1": ""
"--h2": ""

# Customisable parameters for arima mapping pipeline:
arima:
MAPQ_FILTER: 10
CPU: 4

# Customisable parameters for yahs
yahs:
o: "hifiasm_p_purged_yahs" # output prefix
optional_params:
"-e": "GATC" # you can specify the restriction enzyme(s) used by the Hi-C experiment

0 comments on commit c6eeafe

Please sign in to comment.