Skip to content
Snippets Groups Projects
Select Git revision
  • f19a3ec0c9b7c991ed8e935124140f4dec0c5da0
  • master default protected
  • dev_carine
  • cbedet1-master-patch-41030
  • dev
  • v2.0.0
  • v0.4.0
  • v0.3.0
  • v0.2.9
  • v0.2.8
  • v0.2.7
  • 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
20 results

Dockerfile

Blame
  • Forked from LBMC / nextflow
    Source project has a limited visibility.
    main.nf 761 B
    version = "0.10.16"
    container_url = "lbmc/emase:${version}"
    
    params.personalised_transcriptome = ""
    
    process personalised_transcriptome {
      container = "${container_url}"
      label "big_mem_mono_cpus"
      tag "$file_id"
    
      input:
        tuple val(file_id), path(fasta)
        tuple val(gtf_id), path(gtf)
    
      output:
        tuple val(file_id), path("${fasta.simpleName}.*"), emit: index
        tuple val(file_id), path("*_bwa_report.txt"), emit: report
    
      script:
    """
    prepare-emase ${personalised_transcriptome} -G ${REF_FASTA} -g ${REF_GTF} -o ${REF_DIR} -m --no-bowtie-index
    // ${REF_DIR}/emase.transcriptome.fa
    // ${REF_DIR}/emase.transcriptome.info
    // ${REF_DIR}/emase.gene2transcripts.tsv
    prepare-emase -G ${SAMPLE_DIR}/L.fa,${SAMPLE_DIR}/R.fa -s L,R -o ${SAMPLE_DIR}
    """
    }