Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR for Release 1.1.0 "Wingardium Leviosa" #46

Merged
merged 281 commits into from
Nov 7, 2019
Merged

PR for Release 1.1.0 "Wingardium Leviosa" #46

merged 281 commits into from
Nov 7, 2019

Conversation

ggabernet
Copy link
Member

@ggabernet ggabernet commented Nov 5, 2019

  • Added log parsing
  • Added fastQC and multiQC
  • Added downstream repertoire analysis
  • Added clonal analysis
  • Added handling of index files

PR checklist

  • This comment contains a description of changes (with reason)
  • If you've fixed a bug or added code that should be tested, add tests!
  • If necessary, also make a PR on the nf-core/bcellmagic branch on the nf-core/test-datasets repo
  • Ensure the test suite passes (nextflow run . -profile test,docker).
  • Make sure your code lints (nf-core lint .).
  • Documentation in docs is updated
  • CHANGELOG.md is updated
  • README.md is updated

Learn more about contributing: https://github.com/nf-core/bcellmagic/tree/master/.github/CONTRIBUTING.md

@apeltzer apeltzer requested a review from a team November 6, 2019 08:40
.travis.yml Outdated Show resolved Hide resolved
Dockerfile Outdated Show resolved Hide resolved
Dockerfile Outdated Show resolved Hide resolved
README.md Outdated Show resolved Hide resolved
nextflow.config Outdated Show resolved Hide resolved
nextflow.config Outdated Show resolved Hide resolved
main.nf Outdated Show resolved Hide resolved
@apeltzer apeltzer changed the title Added functionality PR for Release 1.1.0 "Wingardium Leviosa" Nov 6, 2019
Copy link
Member

@apeltzer apeltzer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let this fly!

Copy link

@Leon-Bichmann Leon-Bichmann left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me.

else if (filename.indexOf(".tab") > 0) "table/$filename"
else if (filename == "command_log.txt") "$filename"
if (filename.indexOf("table.tab") > 0) "$filename"
else if (filename.indexOf("clone-pass.tab") > 0) "$filename"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A lot of different cases of if statements in your code, I wonder if that could be done in an easier way. But if it works great! ;)

@@ -749,7 +717,7 @@ process assign_clones{
set file("${geno.baseName}_clone-pass.tab"), file("$geno_fasta"), val("$id") into ch_for_germlines
file "${geno.baseName}_clone-pass.tab"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You define a lot of output files but don't pass them into channels, I wonder if it is necessary to define them at all.

ch_read_files_for_merge_r1_umi = Channel.from(file_meta)
.splitCsv(header: true, sep:'\t')
.map { col -> tuple("${col.ID}", "${col.Source}", "${col.Treatment}","${col.Extraction_time}","${col.Population}", file("${col.R1}", checkifExists: true), file("${col.R2}", checkifExists: true))}
.dump()

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is dump() necessary for this?

@@ -166,7 +160,6 @@ summary['Max Time'] = params.max_time
summary['IGDB Path'] = params.igblast_base

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could print some more of the workflow options here, right now you print very few.

@apeltzer apeltzer merged commit 11d19bc into master Nov 7, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants