Skip to content
New issue

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

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

Already on GitHub? # to your account

Will's Update to MerquryFK #344

Merged
merged 9 commits into from
Dec 10, 2024
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
Empty file modified .github/PULL_REQUEST_TEMPLATE.md
100644 → 100755
Empty file.
5 changes: 4 additions & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ Now that's all downloaded we need to prep it. At this point it is all still gzip

The below code will look through the current folder for files ending with `.fasta.gz` and decompresses it, it will then run our python script, `GA_data_prep.py`.

NOTE: This will soon be superseeded by a rust tools `treeval_utils`, this will replace all of the accessory pythons scripts included in this document. Whilst also adding a program to verify your YAML.

Command:

```bash
Expand Down Expand Up @@ -234,7 +236,7 @@ If your data isn't already in these formats, then let us know and we'll see how

This command iterates through your bam files and converts them to fastq via samtools.

```
```bash
cd { TO FOLDER OF BAM FILES }
mkdir fastq
for i in *bam
Expand Down Expand Up @@ -266,6 +268,7 @@ done
This simply gzips (compresses) the fasta files.

```bash
cd fasta
for i in .fasta; do
echo $i
gzip $i
Expand Down
2 changes: 1 addition & 1 deletion modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
},
"fastk/fastk": {
"branch": "master",
"git_sha": "3f5420aa22e00bd030a2556dfdffc9e164ec0ec5",
"git_sha": "666652151335353eef2fcd58880bcef5bc2928e1",
"installed_by": ["modules"],
"patch": "modules/nf-core/fastk/fastk/fastk-fastk.diff"
},
Expand Down
3 changes: 2 additions & 1 deletion modules/nf-core/fastk/fastk/environment.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 16 additions & 3 deletions modules/nf-core/fastk/fastk/fastk-fastk.diff

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 32 additions & 1 deletion modules/nf-core/fastk/fastk/main.nf
100755 → 100644

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

74 changes: 45 additions & 29 deletions modules/nf-core/fastk/fastk/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

110 changes: 110 additions & 0 deletions modules/nf-core/fastk/fastk/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading