-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
84b8baa
commit 4a81ce4
Showing
23 changed files
with
215 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -574,5 +574,4 @@ png(file=outputfile_rep, width=1000, height=1500, type='cairo') | |
|
||
dev.off() | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,98 @@ | ||
/* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Nextflow config file for running full-size tests | ||
Nextflow config file for running minimal tests | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Defines input files and everything required to run a full size pipeline test. | ||
Defines input files and everything required to run a fast and simple pipeline test. | ||
|
||
Use as follows: | ||
nextflow run nf-core/aceseq -profile test_full,<docker/singularity> --outdir <OUTDIR> | ||
nextflow run main.nf -profile test_full,singularity --outdir <OUTDIR> | ||
|
||
---------------------------------------------------------------------------------------- | ||
*/ | ||
|
||
params { | ||
config_profile_name = 'Full test profile' | ||
config_profile_description = 'Full test dataset to check pipeline function' | ||
config_profile_contact = 'Kübra Narcı kuebra.narci@dkfz-heidelberg.de' | ||
config_profile_name = 'Test profiler' | ||
config_profile_description = 'Test dataset for to check pipeline function' | ||
|
||
// Input data for full size test | ||
// TODO nf-core: Specify the paths to your full test data ( on nf-core/test-datasets or directly in repositories, e.g. SRA) | ||
// TODO nf-core: Give any required params for the test so that command line flags are not needed | ||
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/viralrecon/samplesheet/samplesheet_full_illumina_amplicon.csv' | ||
// Limit resources so that this can run on GitHub Actions | ||
max_cpus = 16 | ||
max_memory = '100.GB' | ||
max_time = '8.h' | ||
|
||
// Input data | ||
input = 'assets/samplesheet_37_full.csv' | ||
|
||
// workflow parameters | ||
outdir = "test_full" | ||
|
||
// correctGC options | ||
minLim = 0.47 | ||
maxLim = 0.53 | ||
min_length_purity = 1000000 | ||
min_hetSNPs_purity = 0 // default 500 !! | ||
dh_stop = "max" | ||
min_length_dh_stop = 1000000 | ||
dh_zero = "no" | ||
purity_min = 0.3 | ||
purity_max = 1.0 | ||
ploidy_min = 1.0 | ||
ploidy_max = 6.5 | ||
local_minium_upper_boundary_shift = 0.1 | ||
|
||
// Reference // | ||
data_path = "/omics/odcf/reference_data/legacy/ngs_share/assemblies/hg19_GRCh37_1000genomes" | ||
fasta = '/omics/odcf/reference_data/legacy/ngs_share/assemblies/hg19_GRCh37_1000genomes/sequence/1KGRef/hs37d5.fa' | ||
fasta_fai = '/omics/odcf/reference_data/legacy/ngs_share/assemblies/hg19_GRCh37_1000genomes/sequence/1KGRef/hs37d5.fa.fai' | ||
chrom_sizes = '/omics/odcf/reference_data/legacy/ngs_share/assemblies/hg19_GRCh37_1000genomes/stats/hs37d5.fa.chrLenOnlyACGT_realChromosomes.tab' | ||
chr_prefix = "" | ||
|
||
// Beagle reference | ||
beagle_reference = "${params.data_path}/tools_data/Beagle" | ||
beagle_genetic_map = "${params.data_path}/tools_data/genetic_maps" | ||
beagle_ref_ext = "bref3" // vcf | bref | bref3 | ||
beagle_map_ext = "map" | ||
|
||
// Annotation files | ||
dbsnp_snv = "${params.data_path}/databases/dbSNP/dbSNP_135/00-All.SNV.vcf.gz" | ||
mapability_file = "${params.data_path}/databases/UCSC/wgEncodeCrgMapabilityAlign100mer_chr.bedGraph.gz" | ||
replication_time_file = "${params.data_path}/databases/ENCODE/ReplicationTime_10cellines_mean_10KB.Rda" | ||
gc_content_file = "${params.data_path}/stats/hg19_GRch37_100genomes_gc_content_10kb.txt" | ||
gene_annotation_file = "${params.data_path}/tools_data/ACEseq/INFORM_druggable_genes.csv" | ||
|
||
// get breakpoints/ PSCBS gaps | ||
centromer_file = "${params.data_path}/stats/hg19_gaps.txt" | ||
|
||
// HDR estimation | ||
blacklist_file = "assets/artifact.homoDels.potentialArtifacts.txt" | ||
cytobands_file = "assets/hg19_cytoBand.txt" | ||
} | ||
|
||
// Perform work directory cleanup when the run has succesfully completed | ||
cleanup = true | ||
|
||
// Reduce the job submit rate to about 5 per second, this way the server won't be bombarded with jobs | ||
|
||
singularity { | ||
enabled = true | ||
cacheDir = "/omics/groups/OE0608/internal/kubran/singularity" | ||
autoMounts = true | ||
runOptions = "-B /omics/groups -B /omics/odcf/analysis -B /omics/odcf/project -B /omics/odcf/reference_data" | ||
} | ||
env { | ||
SINGULARITY_CACHEDIR="/omics/groups/OE0608/internal/kubran/singularity" | ||
SINGULARITY_LIBRARYDIR="/omics/groups/OE0608/internal/kubran/singularity/library" | ||
} | ||
|
||
process { | ||
executor = 'lsf' | ||
scratch = '$SCRATCHDIR/$LSB_JOBID' | ||
|
||
// Genome references | ||
genome = 'R64-1-1' | ||
} | ||
executor { | ||
name = 'lsf' | ||
perTaskReserve = false | ||
perJobMemLimit = true | ||
submitRateLimit = '30 sec' | ||
queueSize=50 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.