Skip to content
Snippets Groups Projects
Select Git revision
  • 072e204a4d7dd3db0259c5d2a6048815b9a5a617
  • master default protected
  • gatk
  • bwamem
  • dev
  • v0.2.6
  • v0.1.0
  • v0.2.5
  • v0.2.4
  • v0.2.3
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.2
14 results

counting.nf

Blame
  • Forked from LBMC / nextflow
    Source project has a limited visibility.
    fasta_sampler.nf 306 B
    Channel
      .fromPath( "data/tiny_dataset/fasta/*.fasta" )
      .set { fasta_file }
    
    process sample_fasta {
      publishDir "results/sampling/", mode: 'copy'
    
      input:
    file fasta from fasta_file
    
      output:
    file "*_sample.fasta" into fasta_sample
    
      script:
    """
    head ${fasta} > ${fasta.baseName}_sample.fasta
    """
    }