-
Notifications
You must be signed in to change notification settings - Fork 5
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
refactor: Updated the counts-umi-smk rule and it's scripts to python3 #93
Merged
Ampholyt
merged 17 commits into
kircherlab:development
from
bioinformaticsguy:counts-umi-smk-script-update
Jan 24, 2024
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
c30d4fa
Duplicated the file FastQ2doubleIndexBAM.py and added suffix _python3…
bioinformaticsguy b60ceff
updated the script FastQ2doubleIndexBAM_python3 in the counts_umi.smk…
bioinformaticsguy e2f9fb5
created a duplicated file MergeTrimReadsBAM_python3.py.
bioinformaticsguy eba52a6
updated the script in counts_umi.smk to _python3.
bioinformaticsguy 1f2d4f9
applied 2to3 on files FastQ2doubleIndexBAM_python3.py and MergeTrimRe…
bioinformaticsguy bab4c33
Created the file library_python3.py.
bioinformaticsguy 75d4361
added the pysam library to the dependencies in the python3.yaml file …
bioinformaticsguy 77f4269
Pusing the converted python3 files that cause the following error.
bioinformaticsguy 0d9edfc
created the new python3 version of MergeTrimReads_python3.py
bioinformaticsguy d19659b
Converted to python3 using the p2to3 library.
bioinformaticsguy 21449cc
Updated the file MergeTrimReadsBAM_python3.py
bioinformaticsguy efc09ea
fixed the errors so that piplines runs fine.
bioinformaticsguy 0cf383d
Removed raise exception as it is not needed in python3
bioinformaticsguy b792880
Reformated the sys.stderr.write string to f string to avoid the warrn…
bioinformaticsguy 6a900ae
updated the env line and the scripts line according to python3 env an…
bioinformaticsguy efd6caa
Added the update header details in the header docstring of the files.
bioinformaticsguy 8548945
prepending r before the strings in wildcard_constraints because of py…
bioinformaticsguy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ dependencies: | |
- pandas | ||
- polars | ||
- python | ||
- pysam |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I add it here because it is a minor thing (actually because of the Snakefile): change regex strings in the Snakefile to raw strings as mentioned here