Boulet
- carbon pen platinium DP800S
- aquarelle winsor & newton
- pinceaux "Raphaël*
- papier 250g Clairefontaine
params.samples="NO_FILE" | |
workflow { | |
ch = Channel.fromPath(params.samples). | |
flatMap(F->{ | |
def yaml = new org.yaml.snakeyaml.Yaml(); | |
def map = yaml.load(F); | |
return map.samples; | |
}); | |
doIt(ch) |
<html> | |
<head> | |
</head> | |
<body> | |
<bio-anchor build="hg38">rs25</bio-anchor> and | |
<bio-anchor build="hg38">ENSG00000005108</bio-anchor> | |
<bio-anchor build="hg38">chr1:1234-1235</bio-anchor> | |
<bio-anchor build="hg38">xxx</bio-anchor> | |
</body> |
# input is | |
# DATA/father.R1.fq.gz | |
# DATA/father.R2.fq.gz | |
# DATA/mother.R1.fq.gz | |
# DATA/mother.R2.fq.gz | |
# DATA/child.R1.fq.gz | |
# DATA/child.R2.fq.gz | |
# | |
define mapreads |
Pas de problème, voici les règles pour un jeu de plateau inspiré de Monopoly, mais situé dans un laboratoire de recherche en génétique, où les joueurs achètent des laboratoires plutôt que des propriétés :
/* author Pierre Lindenbaum */ | |
params.vcfs="NO_FILE" | |
params.samples="NO_FILE" | |
workflow { | |
each_vcf = Channel.fromPath(params.vcfs).splitText().map{it.trim()} | |
c2vcf = CHROMS_IN_VCF(each_vcf) |
with include{MyTest}
Cannot find a component with name 'MyTest' in module: .../20230103.nf.class/./class.nf
-- Check script 'test.nf' at line: 2 or see '.nextflow.log' file for more details
without include{MyTest}
CC?=gcc | |
ifeq ($(HTSLIB),) | |
$(error undefined $$HTSLIB) | |
endif | |
CFLAGS= -Wall -O3 -I$(HTSLIB) | |
LDFLAGS= -L$(HTSLIB) -lz -lhts | |