Skip to content

Commit

Permalink
Merge pull request #65 from nf-core/dev
Browse files Browse the repository at this point in the history
update master before release
  • Loading branch information
BarryDigby committed Dec 12, 2022
2 parents ca5a001 + b84d894 commit 18e580e
Show file tree
Hide file tree
Showing 3 changed files with 107 additions and 67 deletions.
2 changes: 1 addition & 1 deletion assets/email_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<meta name="description" content="nf-core/circrna: circRNA quantification, differential expression analysis and miRNA target prediction of RNA-Seq data">
<meta name="description" content="nf-core/circrna: Quantification, miRNA target prediction and differential expression analysis of circular RNAs">
<title>nf-core/circrna Pipeline Report</title>
</head>
<body>
Expand Down
39 changes: 24 additions & 15 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ params {

// Input options
input = null
outdir = './results'
phenotype = null

// workflow options
Expand All @@ -21,12 +22,23 @@ params {
tool_filter = 0
duplicates_fun = 'mean'
exon_boundary = 200
save_intermediates = true

// reference genome options
genome = null
igenomes_base = 's3://ngi-igenomes/igenomes'
igenomes_ignore = false
bowtie = null
bowtie2 = null
bwa = null
hisat2 = null
hisat2_build_memory = '200.GB'
segemehl = null
star = null
gtf = null
mature = null
species = null
skip_fastqc = false
save_reference = true
save_intermediates = true

// Trimming
min_trimmed_reads = 10000
Expand All @@ -38,31 +50,28 @@ params {
save_trimmed = false
skip_trimming = false

// STAR
// Alignment options

//> STAR
chimJunctionOverhangMin = 10
alignSJDBoverhangMin = 10
chimSegmentMin = 10
sjdboverhang = 100

// MAPSPLICE
//> MAPSPLICE
seglen = 25
min_intron = 20
max_intron = 1000000
min_map_len = 40
min_fusion_distance = 200

// References
genome = null
igenomes_base = 's3://ngi-igenomes/igenomes'
igenomes_ignore = false
bowtie = null
bowtie2 = null
bwa = null
fasta_fai = null
segemehl = null
star = null

//> MISC
save_unaligned = false
seq_center = null

// MultiQC options
skip_fastqc = false
multiqc_config = null
multiqc_title = null
multiqc_logo = null
Expand Down Expand Up @@ -237,7 +246,7 @@ manifest {
name = 'nf-core/circrna'
author = """Barry Digby"""
homePage = 'https://github.com/nf-core/circrna'
description = """circRNA quantification, differential expression analysis and miRNA target prediction of RNA-Seq data"""
description = """Quantification, miRNA target prediction and differential expression analysis of circular RNAs"""
mainScript = 'main.nf'
nextflowVersion = '!>=22.10.1'
version = 'dev'
Expand Down

0 comments on commit 18e580e

Please sign in to comment.