- carbon pen platinium DP800S
- aquarelle winsor & newton
- pinceaux "Raphaël*
- papier 250g Clairefontaine
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
# 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 :
- Plateau de jeu
- Cartes "Chercheurs invités"
- Cartes "Subventions"
- Pions (molécule d'ADN, microscope, fiole, pipette, gant de laboratoire)
- Billets de publications scientifiques (au lieu d'argent)
- Laboratoires (au lieu de propriétés)
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
/* 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}
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
CC?=gcc | |
ifeq ($(HTSLIB),) | |
$(error undefined $$HTSLIB) | |
endif | |
CFLAGS= -Wall -O3 -I$(HTSLIB) | |
LDFLAGS= -L$(HTSLIB) -lz -lhts | |
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
import java.io.*; | |
import java.util.*; | |
public class Biostar9532375 { | |
private static class Sequence { | |
String name; | |
StringBuilder seq=new StringBuilder(); | |
boolean same(char c1,char c2) { | |
if(c1==c2) return true; | |
if(c1=='N' || c2=='N') return true; | |
return false; |
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
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <ctype.h> | |
#define MAX_SEQ_LENGTH 100 | |
static char compl(char c) { | |
switch(c) { | |
case 'A': return 'T'; |