@@ -219,7 +219,7 @@ def linkedreads(genome_hap1, genome_hap2, output_dir, outer_distance, mutation_r
219
219
@click .option ('--only-vcf' , is_flag = True , default = False , help = 'If setting heterozygosity, only create the vcf rather than the fasta files' )
220
220
@click .option ('-e' , '--exclude-chr' , type = click .Path (exists = True , dir_okay = False , readable = True ), help = "Text file of chromosomes to avoid" )
221
221
@click .option ('-o' , '--output-dir' , type = click .Path (exists = False ), default = "Simulate/snpindel" , show_default = True , help = 'Output directory name' )
222
- @click .option ('-p' , '--prefix' , type = str , default = "sim.snpindel " , show_default = True , help = "Naming prefix for output files" )
222
+ @click .option ('-p' , '--prefix' , type = str , default = "sim" , show_default = True , help = "Naming prefix for output files" )
223
223
@click .option ('--conda' , is_flag = True , default = False , help = 'Use conda/mamba instead of container' )
224
224
@click .option ('--setup-only' , is_flag = True , hidden = True , show_default = True , default = False , help = 'Setup the workflow and exit' )
225
225
@click .option ('--hpc' , type = click .Path (exists = True , file_okay = False , readable = True ), help = 'Directory with HPC submission `config.yaml` file' )
@@ -340,7 +340,7 @@ def snpindel(genome, snp_vcf, indel_vcf, only_vcf, output_dir, prefix, snp_count
340
340
@click .option ('-g' , '--genes' , type = click .Path (exists = True , dir_okay = False , readable = True ), help = "GFF3 file of genes to avoid when simulating" )
341
341
@click .option ('-z' , '--heterozygosity' , type = click .FloatRange (0 ,1 ), default = 0 , show_default = True , help = 'heterozygosity to simulate diploid variants' )
342
342
@click .option ('-e' , '--exclude-chr' , type = click .Path (exists = True , dir_okay = False , readable = True ), help = "Text file of chromosomes to avoid" )
343
- @click .option ('-p' , '--prefix' , type = str , default = "sim.inversion " , show_default = True , help = "Naming prefix for output files" )
343
+ @click .option ('-p' , '--prefix' , type = str , default = "sim" , show_default = True , help = "Naming prefix for output files" )
344
344
@click .option ('--only-vcf' , is_flag = True , default = False , help = 'If setting heterozygosity, only create the vcf rather than the fasta files' )
345
345
@click .option ('-o' , '--output-dir' , type = click .Path (exists = False ), default = "Simulate/inversion" , show_default = True , help = 'Output directory name' )
346
346
@click .option ('--conda' , is_flag = True , default = False , help = 'Use conda/mamba instead of container' )
@@ -450,7 +450,7 @@ def inversion(genome, vcf, only_vcf, prefix, output_dir, count, min_size, max_si
450
450
@click .option ('--only-vcf' , is_flag = True , default = False , help = 'If setting heterozygosity, only create the vcf rather than the fasta files' )
451
451
@click .option ('-e' , '--exclude-chr' , type = click .Path (exists = True , dir_okay = False , readable = True ), help = "Text file of chromosomes to avoid" )
452
452
@click .option ('-o' , '--output-dir' , type = click .Path (exists = False ), default = "Simulate/cnv" , show_default = True , help = 'Output directory name' )
453
- @click .option ('-p' , '--prefix' , type = str , default = "sim.cnv " , show_default = True , help = "Naming prefix for output files" )
453
+ @click .option ('-p' , '--prefix' , type = str , default = "sim" , show_default = True , help = "Naming prefix for output files" )
454
454
@click .option ('--conda' , is_flag = True , default = False , help = 'Use conda/mamba instead of container' )
455
455
@click .option ('--setup-only' , is_flag = True , hidden = True , show_default = True , default = False , help = 'Setup the workflow and exit' )
456
456
@click .option ('--hpc' , type = click .Path (exists = True , file_okay = False , readable = True ), help = 'Directory with HPC submission `config.yaml` file' )
@@ -561,7 +561,7 @@ def cnv(genome, output_dir, vcf, only_vcf, prefix, count, min_size, max_size, du
561
561
@click .option ('--only-vcf' , is_flag = True , default = False , help = 'If setting heterozygosity, only create the vcf rather than the fasta files' )
562
562
@click .option ('-e' , '--exclude-chr' , type = click .Path (exists = True , dir_okay = False , readable = True ), help = "Text file of chromosomes to avoid" )
563
563
@click .option ('-o' , '--output-dir' , type = click .Path (exists = False ), default = "Simulate/translocation" , show_default = True , help = 'Output directory name' )
564
- @click .option ('-p' , '--prefix' , type = str , default = "sim.translocation " , show_default = True , help = "Naming prefix for output files" )
564
+ @click .option ('-p' , '--prefix' , type = str , default = "sim" , show_default = True , help = "Naming prefix for output files" )
565
565
@click .option ('--conda' , is_flag = True , default = False , help = 'Use conda/mamba instead of container' )
566
566
@click .option ('--setup-only' , is_flag = True , hidden = True , show_default = True , default = False , help = 'Setup the workflow and exit' )
567
567
@click .option ('--hpc' , type = click .Path (exists = True , file_okay = False , readable = True ), help = 'Directory with HPC submission `config.yaml` file' )
0 commit comments