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

Delete empty lines #89

Merged
merged 5 commits into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions modules/local/bagel2/graph.nf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ process BAGEL2_GRAPH {
####
#### Orient a reference sequence according to reads orientation.


import pandas as pd
import matplotlib.pyplot as plt

Expand Down Expand Up @@ -68,7 +67,6 @@ process BAGEL2_GRAPH {
f.write(f' pandas: "{version}"\\n')
f.write(f' matplotlib.pyplot: "{matplotlib_version}"\\n')


"""


Expand Down
2 changes: 1 addition & 1 deletion workflows/crisprseq_screening.nf
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ workflow CRISPRSEQ_SCREENING {
}

CUSTOM_DUMPSOFTWAREVERSIONS (
ch_versions.unique().collectFile(name: 'collated_versions.yml')
ch_versions.unique{ it.text }.collectFile(name: 'collated_versions.yml')
)

//
Expand Down
Loading