Skip to content

Instantly share code, notes, and snippets.

View tomraulet's full-sized avatar

Tom tomraulet

View GitHub Profile
@tomraulet
tomraulet / awesome_process.nf
Last active June 3, 2022 09:09
nextflow subworkflow config on the fly
process AWESOME_PROCESS {
input:
path fasta
val args
output:
path "*", emit: output
script:
@tomraulet
tomraulet / settings.json
Last active September 5, 2019 16:07
VSCode settings
{
"window.titleBarStyle": "custom",
"ruby.intellisense": "rubyLocate",
"ruby.format": "standard",
"ruby.codeCompletion": "rcodetools",
"terminal.integrated.fontFamily": "Droid Sans Mono for Powerline",
"editor.multiCursorModifier": "ctrlCmd",
"git.confirmSync": false,
"gitlens.advanced.telemetry.enabled": false,
"telemetry.enableCrashReporter": false,
@tomraulet
tomraulet / ransack_join_table_twice_issue.rb
Created January 22, 2018 15:17
Ransack : join a table twice
# ransack_join_table_twice_issue
# Fork from : github.com/jonatack/test-ransacker-arel-present-predicate.rb
# Run it in your console with: `ruby ransack_joins_table_twice_issue.rb`
# If you change the gem dependencies, run it with:
# `rm gemfile* && ruby ransack_join_table_twice_issue.rb`
unless File.exist?('Gemfile')
File.write('Gemfile', <<-GEMFILE)