tools icon indicating copy to clipboard operation
tools copied to clipboard

Bioschemas Workflow Profile

Open ewels opened this issue 4 years ago • 6 comments

We are close to releasing our new pipeline schema which describe input parameters. Through chatting to people at BOSC 🍐 I've become aware of a project called Bioschemas which works with schema.org to publish official standardised ways to describe things.

They are currently developing a new schema standard which is specifically for computational workflows: https://bioschemas.org/profiles/Workflow/

Aspects of this schema seem to share a lot of overlap with the schema structure that we're working with already. It could be interesting to see if we can migrate our schema structure to the Bioschemas structure to adhere to this new community standard. This would help the visibility of the nf-core pipelines across the web and in other projects (eg. WorkflowHub).

This will be conditional on it being relatively fast and painless to implement and it still providing all of the functionality that we need (eg. custom fields, grouping of input parameters and so on).

ewels avatar Jul 21 '20 21:07 ewels

Love the idea

maxulysse avatar Jul 22 '20 07:07 maxulysse

Having looked into this more, I think that we are best off keeping our JSON Schema. But we should be able to build a Bioschema fairly easy. Where exactly this should go or where it would be used is less clear.

ewels avatar Jul 22 '20 13:07 ewels

For examples, can look at the HTML source of any workflow on https://workflowhub.eu.

For example: https://workflowhub.eu/workflows/38

{
  "@context": "http://schema.org",
  "@type": "Workflow",
  "@id": "https://workflowhub.eu/workflows/38",
  "description": "Alignment, assembly RNASEQ reads and annotation of generated transcripts.",
  "name": "Unicycler assembly and annotation",
  "url": "https://workflowhub.eu/workflows/38",
  "keywords": "Unicycler, Annotation, Alignment, RNASEQ, Assembly, covid-19",
  "license": "https://opensource.org/licenses/Apache-2.0",
  "producer": [
    {
      "@type": [
        "Project",
        "Organization"
      ],
      "@id": "https://workflowhub.eu/projects/3",
      "name": "GalaxyProject SARS-CoV-2"
    }
  ],
  "dateCreated": "2020-06-18 23:07:23 UTC",
  "dateModified": "2020-07-01 09:00:05 UTC",
  "encodingFormat": "application/zip",
  "sdPublisher": [
    {
      "@type": "Person",
      "@id": "https://workflowhub.eu/people/26",
      "name": "Ambarish Kumar"
    }
  ],
  "version": 1,
  "image": "https://workflowhub.eu/workflows/38/diagram?version=1",
  "programmingLanguage": "Galaxy",
  "inputs": [
    {
      "@type": "PropertyValueSpecification",
      "name": "mask_data_file"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "bed_file"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "lr_align"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "long"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "rotation"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "input"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "mask_data_file"
    }
  ],
  "outputs": [
    {
      "@type": "PropertyValueSpecification",
      "name": "proteome"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "list_paired"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "output_collection"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "output_collection_other"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "log"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "outfile"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "outfile"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "output_paired_coll"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "report_html"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "report_json"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "bam_output"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "stats"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "html_report"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "output1"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "forward"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "reverse"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "outFile"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "forward"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "reverse"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "assembly_graph"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "assembly"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "outfile"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "genecluster_tabular"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "genbank"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "embl"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "archive"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "html"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "transdecoder_pep"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "transdecoder_cds"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "transdecoder_bed"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "transdecoder_gff3"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "genes_output"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "output"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "tblout"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "domtblout"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "outfile"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "output1"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "output1"
    },
    {
      "@type": "PropertyValueSpecification",
      "name": "output1"
    }
  ]
}

ewels avatar Jul 22 '20 13:07 ewels

Another example: https://workflowhub.eu/workflows/19 (for nf-core/viralrecon)

{
  "@context": "http://schema.org",
  "@type": "Workflow",
  "@id": "https://workflowhub.eu/workflows/19",
  "description": "\r\n<h1 class=\"code-line\">\n<a></a><img src=\"https://raw.githubusercontent.com/nf-core/viralrecon/master/docs/images/nf-core-viralrecon_logo.png\" alt=\"nf-core/viralrecon\">\n</h1>\r\n<p class=\"has-line-data\"><a href=\"https://github.com/nf-core/viralrecon/actions\"><img src=\"https://github.com/nf-core/viralrecon/workflows/nf-core%20CI/badge.svg\" alt=\"GitHub Actions CI Status\"></a> <a href=\"https://github.com/nf-core/viralrecon/actions\"><img src=\"https://github.com/nf-core/viralrecon/workflows/nf-core%20linting/badge.svg\" alt=\"GitHub Actions Linting Status\"></a> <a href=\"https://www.nextflow.io/\"><img src=\"https://img.shields.io/badge/nextflow-%E2%89%A519.10.0-brightgreen.svg\" alt=\"Nextflow\"></a> <a href=\"https://bioconda.github.io/\"><img src=\"https://img.shields.io/badge/install%20with-bioconda-brightgreen.svg\" alt=\"install with bioconda\"></a></p>\r\n<p class=\"has-line-data\"><a href=\"https://hub.docker.com/r/nfcore/viralrecon\"><img src=\"https://img.shields.io/docker/automated/nfcore/viralrecon.svg\" alt=\"Docker\"></a> <a href=\"https://doi.org/10.5281/zenodo.3872730\"><img src=\"https://zenodo.org/badge/DOI/10.5281/zenodo.3872730.svg\" alt=\"DOI\"></a></p>\r\n<p class=\"has-line-data\"><strong>nfcore/viralrecon</strong> is a bioinformatics analysis pipeline used to perform assembly and intrahost/low-frequency variant calling for viral samples. The pipeline currently supports metagenomics and amplicon sequencing data derived from the Illumina sequencing platform.</p>\r\n<p class=\"has-line-data\">This pipeline is a re-implementation of the <a href=\"https://github.com/BU-ISCIII/SARS_Cov2_consensus-nf\">SARS_Cov2_consensus-nf</a> and <a href=\"https://github.com/BU-ISCIII/SARS_Cov2_assembly-nf\">SARS_Cov2_assembly-nf</a> pipelines initially developed by <a href=\"https://github.com/svarona\">Sarai Varona</a> and <a href=\"https://github.com/saramonzon\">Sara Monzon</a> from <a href=\"https://github.com/BU-ISCIII\">BU-ISCIII</a>. Porting both of these pipelines to nf-core was an international collaboration between numerous contributors and developers, led by <a href=\"https://github.com/drpatelh\">Harshil Patel</a> from the <a href=\"https://www.crick.ac.uk/research/science-technology-platforms/bioinformatics-and-biostatistics/\">The Bioinformatics &amp; Biostatistics Group</a> at <a href=\"https://www.crick.ac.uk/\">The Francis Crick Institute</a>, London. We appreciated the need to have a portable, reproducible and scalable pipeline for the analysis of COVID-19 sequencing samples and so the Avengers Assembled! Please come and join us and add yourself to the contributor list :)</p>\r\n<p class=\"has-line-data\">We have integrated a number of options in the pipeline to allow you to run specific aspects of the workflow if you so wish. For example, you can skip all of the assembly steps with the <code>--skip_assembly</code> parameter. See <a href=\"docs/usage.md\">usage docs</a> for all of the available options when running the pipeline.</p>\r\n<p class=\"has-line-data\">Please click <a href=\"https://raw.githack.com/nf-core/viralrecon/master/docs/html/multiqc_report.html\">here</a> to see an example MultiQC report generated using the parameters defined in <a href=\"https://github.com/nf-core/viralrecon/blob/master/conf/test_full.config\">this configuration file</a> to run the pipeline on <a href=\"https://zenodo.org/record/3735111\">samples</a> which were prepared from the <a href=\"https://artic.network/ncov-2019\">ncov-2019 ARTIC Network V1 amplicon set</a> and sequenced on the Illumina MiSeq platform in 301bp paired-end format.</p>\r\n<p class=\"has-line-data\">The pipeline is built using <a href=\"https://www.nextflow.io\">Nextflow</a>, a workflow tool to run tasks across multiple compute infrastructures in a very portable manner. It comes with docker containers making installation trivial and results highly reproducible. Furthermore, automated continuous integration tests to run the pipeline on a full-sized dataset are passing on AWS cloud.</p>\r\n<h2 class=\"code-line\">\n<a></a>Pipeline summary</h2>\r\n<ol>\r\n<li class=\"has-line-data\">Download samples via SRA, ENA or GEO ids (<a href=\"https://ena-docs.readthedocs.io/en/latest/retrieval/file-download.html\"><code>ENA FTP</code></a>, <a href=\"https://github.com/rvalieris/parallel-fastq-dump\"><code>parallel-fastq-dump</code></a>; <em>if required</em>)</li>\r\n<li class=\"has-line-data\">Merge re-sequenced FastQ files (<a href=\"http://www.linfo.org/cat.html\"><code>cat</code></a>; <em>if required</em>)</li>\r\n<li class=\"has-line-data\">Read QC (<a href=\"https://www.bioinformatics.babraham.ac.uk/projects/fastqc/\"><code>FastQC</code></a>)</li>\r\n<li class=\"has-line-data\">Adapter trimming (<a href=\"https://github.com/OpenGene/fastp\"><code>fastp</code></a>)</li>\r\n<li class=\"has-line-data\">Variant calling<br>\r\ni. Read alignment (<a href=\"http://bowtie-bio.sourceforge.net/bowtie2/index.shtml\"><code>Bowtie 2</code></a>)<br>\r\nii. Sort and index alignments (<a href=\"https://sourceforge.net/projects/samtools/files/samtools/\"><code>SAMtools</code></a>)<br>\r\niii. Primer sequence removal (<a href=\"https://github.com/andersen-lab/ivar\"><code>iVar</code></a>; <em>amplicon data only</em>)<br>\r\niv. Duplicate read marking (<a href=\"https://broadinstitute.github.io/picard/\"><code>picard</code></a>; <em>removal optional</em>)<br>\r\nv. Alignment-level QC (<a href=\"https://broadinstitute.github.io/picard/\"><code>picard</code></a>, <a href=\"https://sourceforge.net/projects/samtools/files/samtools/\"><code>SAMtools</code></a>)<br>\r\nvi. Choice of multiple variant calling and consensus sequence generation routes (<a href=\"https://dkoboldt.github.io/varscan/\"><code>VarScan 2</code></a>, <a href=\"https://samtools.github.io/bcftools/bcftools.html\"><code>BCFTools</code></a>, <a href=\"https://github.com/arq5x/bedtools2/\"><code>BEDTools</code></a> <em>||</em> <a href=\"https://github.com/andersen-lab/ivar\"><code>iVar variants and consensus</code></a> <em>||</em> <a href=\"https://samtools.github.io/bcftools/bcftools.html\"><code>BCFTools</code></a>, <a href=\"https://github.com/arq5x/bedtools2/\"><code>BEDTools</code></a>)<br>\r\n- Variant annotation (<a href=\"http://snpeff.sourceforge.net/SnpEff.html\"><code>SnpEff</code></a>, <a href=\"http://snpeff.sourceforge.net/SnpSift.html\"><code>SnpSift</code></a>)<br>\r\n- Consensus assessment report (<a href=\"http://quast.sourceforge.net/quast\"><code>QUAST</code></a>)</li>\r\n<li class=\"has-line-data\">\n<em>De novo</em> assembly<br>\r\ni. Primer trimming (<a href=\"https://cutadapt.readthedocs.io/en/stable/guide.html\"><code>Cutadapt</code></a>; <em>amplicon data only</em>)<br>\r\nii. Removal of host reads (<a href=\"http://ccb.jhu.edu/software/kraken2/\"><code>Kraken 2</code></a>)<br>\r\niii. Choice of multiple assembly tools (<a href=\"http://cab.spbu.ru/software/spades/\"><code>SPAdes</code></a> <em>||</em> <a href=\"http://cab.spbu.ru/software/meta-spades/\"><code>metaSPAdes</code></a> <em>||</em> <a href=\"https://github.com/rrwick/Unicycler\"><code>Unicycler</code></a> <em>||</em> <a href=\"https://github.com/GATB/minia\"><code>minia</code></a>)<br>\r\n- Blast to reference genome (<a href=\"https://blast.ncbi.nlm.nih.gov/Blast.cgi?PAGE_TYPE=BlastSearch\"><code>blastn</code></a>)<br>\r\n- Contiguate assembly (<a href=\"https://www.sanger.ac.uk/science/tools/pagit\"><code>ABACAS</code></a>)<br>\r\n- Assembly report (<a href=\"https://github.com/BU-ISCIII/plasmidID\"><code>PlasmidID</code></a>)<br>\r\n- Assembly assessment report (<a href=\"http://quast.sourceforge.net/quast\"><code>QUAST</code></a>)<br>\r\n- Call variants relative to reference (<a href=\"https://github.com/lh3/minimap2\"><code>Minimap2</code></a>, <a href=\"https://github.com/ekg/seqwish\"><code>seqwish</code></a>, <a href=\"https://github.com/vgteam/vg\"><code>vg</code></a>, <a href=\"https://github.com/rrwick/Bandage\"><code>Bandage</code></a>)<br>\r\n- Variant annotation (<a href=\"http://snpeff.sourceforge.net/SnpEff.html\"><code>SnpEff</code></a>, <a href=\"http://snpeff.sourceforge.net/SnpSift.html\"><code>SnpSift</code></a>)</li>\r\n<li class=\"has-line-data\">Present QC and visualisation for raw read, alignment, assembly and variant calling results (<a href=\"http://multiqc.info/\"><code>MultiQC</code></a>)</li>\r\n</ol>\r\n<h2 class=\"code-line\">\n<a></a>Quick Start</h2>\r\n<p class=\"has-line-data\">i. Install <a href=\"https://nf-co.re/usage/installation\"><code>nextflow</code></a></p>\r\n<p class=\"has-line-data\">ii. Install either <a href=\"https://docs.docker.com/engine/installation/\"><code>Docker</code></a> or <a href=\"https://www.sylabs.io/guides/3.0/user-guide/\"><code>Singularity</code></a> for full pipeline reproducibility (please only use <a href=\"https://conda.io/miniconda.html\"><code>Conda</code></a> as a last resort; see <a href=\"https://nf-co.re/usage/configuration#basic-configuration-profiles\">docs</a>)</p>\r\n<p class=\"has-line-data\">iii. Download the pipeline and test it on a minimal dataset with a single command</p>\r\n<pre><code class=\"has-line-data\">nextflow run nf-core/viralrecon -profile <span class=\"hljs-built_in\">test</span>,&lt;docker/singularity/conda/institute&gt;\r\n</code></pre>\r\n<blockquote>\r\n<p class=\"has-line-data\">Please check <a href=\"https://github.com/nf-core/configs#documentation\">nf-core/configs</a> to see if a custom config file to run nf-core pipelines already exists for your Institute. If so, you can simply use <code>-profile &lt;institute&gt;</code> in your command. This will enable either <code>docker</code> or <code>singularity</code> and set the appropriate execution settings for your local compute environment.</p>\r\n</blockquote>\r\n<p class=\"has-line-data\">iv. Start running your own analysis!</p>\r\n<pre><code class=\"has-line-data\">nextflow run nf-core/viralrecon -profile &lt;docker/singularity/conda/institute&gt; --input samplesheet.csv --genome <span class=\"hljs-string\">'NC_045512.2'</span> -profile docker\r\n</code></pre>\r\n<p class=\"has-line-data\">See <a href=\"docs/usage.md\">usage docs</a> for all of the available options when running the pipeline.</p>\r\n<h2 class=\"code-line\">\n<a></a>Documentation</h2>\r\n<p class=\"has-line-data\">The nf-core/viralrecon pipeline comes with documentation about the pipeline, found in the <code>docs/</code> directory:</p>\r\n<ol>\r\n<li class=\"has-line-data\"><a href=\"https://nf-co.re/usage/installation\">Installation</a></li>\r\n<li class=\"has-line-data\">Pipeline configuration\r\n<ul>\r\n<li class=\"has-line-data\"><a href=\"https://nf-co.re/usage/local_installation\">Local installation</a></li>\r\n<li class=\"has-line-data\"><a href=\"https://nf-co.re/usage/adding_own_config\">Adding your own system config</a></li>\r\n<li class=\"has-line-data\"><a href=\"docs/usage.md#reference-genomes\">Reference genomes</a></li>\r\n</ul>\r\n</li>\r\n<li class=\"has-line-data\"><a href=\"docs/usage.md\">Running the pipeline</a></li>\r\n<li class=\"has-line-data\"><a href=\"docs/output.md\">Output and how to interpret the results</a></li>\r\n<li class=\"has-line-data\"><a href=\"https://nf-co.re/usage/troubleshooting\">Troubleshooting</a></li>\r\n</ol>\r\n<h2 class=\"code-line\">\n<a></a>Credits</h2>\r\n<p class=\"has-line-data\">These scripts were originally written by <a href=\"https://github.com/svarona\">Sarai Varona</a>, <a href=\"https://github.com/MiguelJulia\">Miguel Juliá</a> and <a href=\"https://github.com/saramonzon\">Sara Monzon</a> from <a href=\"https://github.com/BU-ISCIII\">BU-ISCIII</a> and co-ordinated by Isabel Cuesta for the <a href=\"https://eng.isciii.es/eng.isciii.es/Paginas/Inicio.html\">Institute of Health Carlos III</a>, Spain. Through collaboration with the nf-core community the pipeline has now been updated substantially to include additional processing steps, to standardise inputs/outputs and to improve pipeline reporting; implemented primarily by <a href=\"https://github.com/drpatelh\">Harshil Patel</a> from <a href=\"https://www.crick.ac.uk/research/science-technology-platforms/bioinformatics-and-biostatistics/\">The Bioinformatics &amp; Biostatistics Group</a> at <a href=\"https://www.crick.ac.uk/\">The Francis Crick Institute</a>, London.</p>\r\n<p class=\"has-line-data\">Many thanks to others who have helped out and contributed along the way too, including (but not limited to):</p>\r\n\r\n\r\n\r\nName\r\nAffiliation\r\n\r\n\r\n\r\n\r\n<a href=\"https://github.com/apeltzer\">Alexander Peltzer</a>\r\n<a href=\"https://www.boehringer-ingelheim.de/\">Boehringer Ingelheim, Germany</a>\r\n\r\n\r\n<a href=\"https://github.com/ameynert\">Alison Meynert</a>\r\n<a href=\"https://www.ed.ac.uk/\">University of Edinburgh, Scotland</a>\r\n\r\n\r\n<a href=\"https://github.com/edgano\">Edgar Garriga Nogales</a>\r\n<a href=\"https://www.crg.eu/\">Centre for Genomic Regulation, Spain</a>\r\n\r\n\r\n<a href=\"https://github.com/ekg\">Erik Garrison</a>\r\n<a href=\"https://www.ucsc.edu/\">UCSC, USA</a>\r\n\r\n\r\n<a href=\"https://github.com/ggabernet\">Gisela Gabernet</a>\r\n<a href=\"https://portal.qbic.uni-tuebingen.de/portal/\">QBiC, University of Tübingen, Germany</a>\r\n\r\n\r\n<a href=\"https://github.com/jcurado-flomics\">Joao Curado</a>\r\n<a href=\"https://www.flomics.com/\">Flomics Biotech, Spain</a>\r\n\r\n\r\n<a href=\"https://github.com/JoseEspinosa\">Jose Espinosa-Carrasco</a>\r\n<a href=\"https://www.crg.eu/\">Centre for Genomic Regulation, Spain</a>\r\n\r\n\r\n<a href=\"https://github.com/ktrns\">Katrin Sameith</a>\r\n<a href=\"https://genomecenter.tu-dresden.de\">DRESDEN-concept Genome Center, Germany</a>\r\n\r\n\r\n<a href=\"https://github.com/lcabus-flomics\">Lluc Cabus</a>\r\n<a href=\"https://www.flomics.com/\">Flomics Biotech, Spain</a>\r\n\r\n\r\n<a href=\"https://github.com/mpozuelo-flomics\">Marta Pozuelo</a>\r\n<a href=\"https://www.flomics.com/\">Flomics Biotech, Spain</a>\r\n\r\n\r\n<a href=\"https://github.com/MaxUlysse\">Maxime Garcia</a>\r\n<a href=\"https://www.scilifelab.se/\">SciLifeLab, Sweden</a>\r\n\r\n\r\n<a href=\"https://github.com/heuermh\">Michael Heuer</a>\r\n<a href=\"https://https://rise.cs.berkeley.edu\">UC Berkeley, USA</a>\r\n\r\n\r\n<a href=\"https://github.com/ewels\">Phil Ewels</a>\r\n<a href=\"https://www.scilifelab.se/\">SciLifeLab, Sweden</a>\r\n\r\n\r\n<a href=\"https://github.com/subwaystation\">Simon Heumos</a>\r\n<a href=\"https://portal.qbic.uni-tuebingen.de/portal/\">QBiC, University of Tübingen, Germany</a>\r\n\r\n\r\n<a href=\"https://github.com/stevekm\">Stephen Kelly</a>\r\n<a href=\"https://www.mskcc.org/\">Memorial Sloan Kettering Cancer Center, USA</a>\r\n\r\n\r\n<a href=\"https://github.com/thanhleviet\">Thanh Le Viet</a>\r\n<a href=\"https://quadram.ac.uk/\">Quadram Institute, UK</a>\r\n\r\n\r\n\r\n<blockquote>\r\n<p class=\"has-line-data\">Listed in alphabetical order</p>\r\n</blockquote>\r\n<h2 class=\"code-line\">\n<a></a>Contributions and Support</h2>\r\n<p class=\"has-line-data\">If you would like to contribute to this pipeline, please see the <a href=\"https://github.com/nf-core/viralrecon/blob/master/.github/CONTRIBUTING.md\">contributing guidelines</a>.</p>\r\n<p class=\"has-line-data\">For further information or help, don’t hesitate to get in touch on <a href=\"https://nfcore.slack.com/channels/viralrecon\">Slack</a> (you can join with <a href=\"https://nf-co.re/join/slack\">this invite</a>).</p>\r\n<h2 class=\"code-line\">\n<a></a>Citation</h2>\r\n<p class=\"has-line-data\">If you use nf-core/viralrecon for your analysis, please cite it using the following doi: <a href=\"https://doi.org/10.5281/zenodo.3872730\">10.5281/zenodo.3872730</a></p>\r\n<p class=\"has-line-data\">An extensive list of references for the tools used by the pipeline can be found in the <a href=\"https://github.com/nf-core/viralrecon/blob/master/CITATIONS.md\"><code>CITATIONS.md</code></a> file.</p>\r\n<p class=\"has-line-data\">You can cite the <code>nf-core</code> publication as follows:</p>\r\n<blockquote>\r\n<p class=\"has-line-data\"><strong>The nf-core framework for community-curated bioinformatics pipelines.</strong></p>\r\n<p class=\"has-line-data\">Philip Ewels, Alexander Peltzer, Sven Fillinger, Harshil Patel, Johannes Alneberg, Andreas Wilm, Maxime Ulysse Garcia, Paolo Di Tommaso &amp; Sven Nahnsen.</p>\r\n<p class=\"has-line-data\"><em>Nat Biotechnol.</em> 2020 Feb 13. doi: <a href=\"https://dx.doi.org/10.1038/s41587-020-0439-x\">10.1038/s41587-020-0439-x</a>.<br>\r\nReadCube: <a href=\"https://rdcu.be/b1GjZ\">Full Access Link</a></p>\r\n</blockquote>\r\n",
  "name": "nf-core/viralrecon",
  "url": "https://workflowhub.eu/workflows/19",
  "keywords": "covid-19",
  "license": "https://opensource.org/licenses/MIT",
  "creator": [
    {
      "@type": "Person",
      "name": "Sarai Varona and Miguel Juliá and Sara Monzon and Alexander Peltzer and Alison Meynert and Edgar Garriga Nogales and Erik Garrison and Gisela Gabernet and Harshil Patel and Joao Curado and Jose Espinosa-Carrasco and Katrin Sameith and Marta Pozuelo and Maxime Garcia and Michael Heuer and Phil Ewels and Simon Heumos and Stephen Kelly and Thanh Le Viet and Isabel Cuesta"
    }
  ],
  "producer": [
    {
      "@type": [
        "Project",
        "Organization"
      ],
      "@id": "https://workflowhub.eu/projects/5",
      "name": "nf-core viralrecon"
    }
  ],
  "dateCreated": "2020-05-14 14:10:58 UTC",
  "dateModified": "2020-06-02 10:46:31 UTC",
  "encodingFormat": "application/zip",
  "sdPublisher": [
    {
      "@type": "Person",
      "@id": "https://workflowhub.eu/people/11",
      "name": "Hervé Ménager"
    }
  ],
  "version": 1,
  "programmingLanguage": "Nextflow",
  "inputs": [

  ],
  "outputs": [

  ]
}

ewels avatar Jul 22 '20 13:07 ewels

I think that this would be a great file to generate automatically to give pipeline-level metadata of all things possible in a flat file.

Can hopefully generate a lot of it automatically from nextflow config results, plus stuff from the schema.

ewels avatar Apr 07 '21 13:04 ewels

I'm not super clear of the overlap between Bioschemas + RO Crate (https://github.com/nf-core/tools/pull/703) so need to think about that when working on either 👍🏻

ewels avatar Apr 07 '21 13:04 ewels