-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add more extraction for sarek related test files #76
Conversation
def meta_extra = [decompress_ascat_alleles: meta.ascat_alleles.endsWith('.zip') ?: false] | ||
return [reduce(meta) + meta_extra, meta.ascat_alleles] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you indent this? It's hard to read which are the branch names
ascat_alleles = ascat_alleles.map { meta, ascat_alleles_ -> meta.decompress_ascat_alleles ? [meta, ascat_alleles_] : null } | ||
ascat_loci = ascat_loci.map { meta, ascat_loci_ -> meta.decompress_ascat_loci ? [meta, ascat_loci_] : null } | ||
ascat_loci_gc = ascat_loci_gc.map { meta, ascat_loci_gc_ -> meta.decompress_ascat_loci_gc ? [meta, ascat_loci_gc_] : null } | ||
ascat_loci_rt = ascat_loci_rt.map { meta, ascat_loci_rt_ -> meta.decompress_ascat_loci_rt ? [meta, ascat_loci_rt_] : null } | ||
chr_dir = chr_dir.map { meta, chr_dir_ -> meta.decompress_chr_dir ? [meta, chr_dir_] : null } | ||
fasta = fasta.map { meta, fasta_ -> meta.decompress_fasta ? [meta, fasta_] : null } | ||
gff = gff.map { meta, gff_ -> meta.decompress_gff ? [meta, gff_] : null } | ||
gtf = gtf.map { meta, gtf_ -> meta.decompress_gtf ? [meta, gtf_] : null } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Harshil Alignment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
language server is not happy with Hathil align
ascat_alleles = UNZIP_ALLELES.out.unzipped_archive | ||
ascat_loci = UNZIP_LOCI.out.unzipped_archive | ||
ascat_loci_gc = UNZIP_GC.out.unzipped_archive | ||
ascat_loci_rt = UNZIP_RT.out.unzipped_archive | ||
chr_dir = UNTAR_CHR_DIR.out.untar | ||
fasta = GUNZIP_FASTA.out.gunzip | ||
gff = GUNZIP_GFF.out.gunzip | ||
gtf = GUNZIP_GTF.out.gunzip |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Harshil alignment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am just nitpicking on the formatting. Feel free to ignore
PR checklist
nf-core pipelines lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).nextflow run . -profile debug,test,docker --outdir <OUTDIR>
).docs/usage.md
is updated.docs/output.md
is updated.CHANGELOG.md
is updated.README.md
is updated (including new tool citations and authors/contributors).