Skip to content

Commit 64ca212

Browse files
committed
auto-rename: TwistMethNext → TwistMethylFlow (docs, README, remote updated)
1 parent c155fb1 commit 64ca212

File tree

7 files changed

+38
-38
lines changed

7 files changed

+38
-38
lines changed

README.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
![](artworks/twistmethnext.png)
22

33
[![DOI](https://zenodo.org/badge/490592846.svg)](https://doi.org/10.5281/zenodo.14204261)
4-
[![GitBook Docs](https://img.shields.io/badge/docs-GitBook-blue?logo=gitbook)](https://jyotirmoys-organization.gitbook.io/TwistMethNext)
5-
[![build-docs](https://github.com/JD2112/TwistMethNext/actions/workflows/build-docs.yml/badge.svg?branch=main)](https://github.com/JD2112/TwistMethNext/actions/workflows/build-docs.yml)
6-
[![GitHub Invite Collaborators](https://img.shields.io/badge/Invite-Collaborators-blue?style=for-the-badge&logo=github)](https://github.com/JD2112/TwistMethNext/settings/access)
4+
[![GitBook Docs](https://img.shields.io/badge/docs-GitBook-blue?logo=gitbook)](https://jyotirmoys-organization.gitbook.io/TwistMethylFlow)
5+
[![build-docs](https://github.com/JD2112/TwistMethylFlow/actions/workflows/build-docs.yml/badge.svg?branch=main)](https://github.com/JD2112/TwistMethylFlow/actions/workflows/build-docs.yml)
6+
[![GitHub Invite Collaborators](https://img.shields.io/badge/Invite-Collaborators-blue?style=for-the-badge&logo=github)](https://github.com/JD2112/TwistMethylFlow/settings/access)
77

88
[![wakatime](https://wakatime.com/badge/user/fe95275f-909a-4147-a45d-624981173898/project/a44415f0-a274-4c3b-a59a-f8e1067c0fc1.svg)](https://wakatime.com/badge/user/fe95275f-909a-4147-a45d-624981173898/project/a44415f0-a274-4c3b-a59a-f8e1067c0fc1)
99

@@ -42,9 +42,9 @@ This Nextflow pipeline is designed for the analysis of Twist NGS Methylation dat
4242
- Java (>=8)
4343

4444
## Usage
45-
1. User can start from the FASTQ files or Bismark aligned BAM files. Find the details on the [manual](https://jyotirmoys-organization.gitbook.io/TwistMethNext)
45+
1. User can start from the FASTQ files or Bismark aligned BAM files. Find the details on the [manual](https://jyotirmoys-organization.gitbook.io/TwistMethylFlow)
4646

47-
2. User can choose to run the differential methylation analysis - either EdgeR or MethylKit or both. Find the details on the [manual](https://jyotirmoys-organization.gitbook.io/TwistMethNext)
47+
2. User can choose to run the differential methylation analysis - either EdgeR or MethylKit or both. Find the details on the [manual](https://jyotirmoys-organization.gitbook.io/TwistMethylFlow)
4848

4949
3. User can also use `--skip_diff_meth` to avoid the differential methylation analysis.
5050

@@ -53,26 +53,26 @@ This Nextflow pipeline is designed for the analysis of Twist NGS Methylation dat
5353
```
5454
# when using the reference genome indexing, --genome_fasta
5555
56-
nextflow run JD2112/TwistMethNext \
56+
nextflow run JD2112/TwistMethylFlow \
5757
-profile singularity \
5858
--sample_sheet Sample_sheet_twist.csv \
5959
--genome_fasta /data/reference_genome/hg38/hg38.fa \
6060
--run_both_methods \
6161
--gtf_file /data/Homo_sapiens.GRCh38.104.gtf \
6262
--refseq_file /data/hg38_RefSeq.bed.gz \
63-
--outdir Results/TwistMethNext_both
63+
--outdir Results/TwistMethylFlow_both
6464
6565
6666
# if you already have the bisulfite genome index, --bismark_index
6767
68-
nextflow run JD2112/TwistMethNext \
68+
nextflow run JD2112/TwistMethylFlow \
6969
-profile singularity \
7070
--sample_sheet Sample_sheet_twist.csv \
7171
--bismark_index /data/reference_genome/hg38/ \
7272
--run_both_methods \
7373
--gtf_file /data/Homo_sapiens.GRCh38.104.gtf \
7474
--refseq_file /data/hg38_RefSeq.bed.gz \
75-
--outdir /mnt/Results/TwistMethNext_both
75+
--outdir /mnt/Results/TwistMethylFlow_both
7676
```
7777

7878

@@ -81,49 +81,49 @@ nextflow run JD2112/TwistMethNext \
8181
```
8282
# when using the reference genome indexing, --genome_fasta
8383
84-
nextflow run JD2112/TwistMethNext \
84+
nextflow run JD2112/TwistMethylFlow \
8585
-profile singularity \
8686
--sample_sheet Sample_sheet_twist.csv \
8787
--genome_fasta /data/reference_genome/hg38/hg38.fa \
8888
--diff_meth_method edger \
8989
--refseq_file /data/hg38_RefSeq.bed.gz \
90-
--outdir Results/TwistMethNext_edgeR
90+
--outdir Results/TwistMethylFlow_edgeR
9191
9292
9393
# if you already have the bisulfite genome index, --bismark_index
9494
95-
nextflow run JD2112/TwistMethNext \
95+
nextflow run JD2112/TwistMethylFlow \
9696
-profile singularity \
9797
--sample_sheet Sample_sheet_twist.csv \
9898
--bismark_index /data/reference_genome/hg38/ \
9999
--diff_meth_method edger \
100100
--refseq_file /data/hg38_RefSeq.bed.gz \
101-
--outdir /mnt/Results/TwistMethNext_edgeR
101+
--outdir /mnt/Results/TwistMethylFlow_edgeR
102102
```
103103

104104
### `--diff_meth_method`: MethylKit
105105

106106
```
107107
# when using the reference genome indexing, --genome_fasta
108108
109-
nextflow run JD2112/TwistMethNext \
109+
nextflow run JD2112/TwistMethylFlow \
110110
-profile singularity \
111111
--sample_sheet Sample_sheet_twist.csv \
112112
--genome_fasta /data/reference_genome/hg38/hg38.fa \
113113
--diff_meth_method methylkit \
114114
--gtf_file /data/Homo_sapiens.GRCh38.104.gtf \
115-
--outdir Results/TwistMethNext_methylKit
115+
--outdir Results/TwistMethylFlow_methylKit
116116
117117
118118
# if you already have the bisulfite genome index, --bismark_index
119119
120-
nextflow run JD2112/TwistMethNext \
120+
nextflow run JD2112/TwistMethylFlow \
121121
-profile singularity \
122122
--sample_sheet Sample_sheet_twist.csv \
123123
--bismark_index /data/reference_genome/hg38/ \
124124
--diff_meth_method methylkit \
125125
--gtf_file /data/Homo_sapiens.GRCh38.104.gtf \
126-
--outdir Results/TwistMethNext_methylKit
126+
--outdir Results/TwistMethylFlow_methylKit
127127
```
128128
## Options:
129129

@@ -154,9 +154,9 @@ nextflow run JD2112/TwistMethNext \
154154
## HELP
155155

156156
```
157-
nextflow run JD2112/TwistMethNext --help --outdir .
157+
nextflow run JD2112/TwistMethylFlow --help --outdir .
158158
```
159-
Find the details on the [manual](https://jd2112.github.io/TwistMethNext/)
159+
Find the details on the [manual](https://jd2112.github.io/TwistMethylFlow/)
160160

161161
## Credits
162162
- Main Author:
@@ -167,17 +167,17 @@ Find the details on the [manual](https://jd2112.github.io/TwistMethNext/)
167167

168168
## Citation
169169

170-
Das, J. (2024). TwistMethNext (v1.0.0). Zenodo. [https://doi.org/10.5281/zenodo.14204261](https://doi.org/10.5281/zenodo.14204261)
170+
Das, J. (2024). TwistMethylFlow (v1.0.0). Zenodo. [https://doi.org/10.5281/zenodo.14204261](https://doi.org/10.5281/zenodo.14204261)
171171

172172
## HELP/FAQ/Troubleshooting
173173

174-
Please check the [manual](https://jd2112.github.io/TwistMethNext/) for details.
174+
Please check the [manual](https://jd2112.github.io/TwistMethylFlow/) for details.
175175

176-
Please create [issues](https://github.com/JD2112/TwistMethNext/issues) on github.
176+
Please create [issues](https://github.com/JD2112/TwistMethylFlow/issues) on github.
177177

178178
## License(s)
179179

180-
[GNU-3 public license](https://github.com/JD2112/TwistMethNext/blob/v1.0.3/LICENSE).
180+
[GNU-3 public license](https://github.com/JD2112/TwistMethylFlow/blob/v1.0.3/LICENSE).
181181

182182
## Acknowledgement
183183

docs/credits.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@
44

55
| Role | Name & Link | Description |
66
|--------------|------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
7-
| **Main Author** | [Jyotirmoy Das](https://github.com/JD2112) | Lead designer, developer, and overall coordinator for the **TwistMethNext** pipeline. |
7+
| **Main Author** | [Jyotirmoy Das](https://github.com/JD2112) | Lead designer, developer, and overall coordinator for the **TwistMethylFlow** pipeline. |
88
| **Maintainer** | [Jyotirmoy Das](https://github.com/JD2112) | Actively maintaining the pipeline, fixing bugs, and implementing new features. |
9-
| **Contributors**| [All Contributors](https://github.com/JD2112/TwistMethNext/pulls) | Thanks to everyone who helped in development, testing, and enhancement. Contributions welcome! |
9+
| **Contributors**| [All Contributors](https://github.com/JD2112/TwistMethylFlow/pulls) | Thanks to everyone who helped in development, testing, and enhancement. Contributions welcome! |
1010

1111
---
1212

1313
## 📄 Citation
1414

15-
If you use **TwistMethNext** in your work, please cite:
15+
If you use **TwistMethylFlow** in your work, please cite:
1616

17-
> Das, J. (2024). *TwistMethNext (v1.0.0)*. Zenodo. [https://doi.org/10.5281/zenodo.14204261](https://doi.org/10.5281/zenodo.14204261)
17+
> Das, J. (2024). *TwistMethylFlow (v1.0.0)*. Zenodo. [https://doi.org/10.5281/zenodo.14204261](https://doi.org/10.5281/zenodo.14204261)
1818
1919
---
2020

2121
## ❓ Help, FAQ, Troubleshooting
2222

2323
- Refer to the [User Manual](index.md) for detailed usage instructions and guidance.
24-
- For bug reports, questions, or feature requests, please open an [issue on GitHub](https://github.com/JD2112/TwistMethNext/issues).
24+
- For bug reports, questions, or feature requests, please open an [issue on GitHub](https://github.com/JD2112/TwistMethylFlow/issues).
2525

2626
---
2727

@@ -44,7 +44,7 @@ This project is licensed under the terms of the **GNU General Public License v3.
4444
- **National Academic Infrastructure for Supercomputing in Sweden (NAISS)**
4545
> The computations/data storage were enabled by resources provided by the National Academic Infrastructure for Supercomputing in Sweden (NAISS), partially funded by the Swedish Research Council through grant agreement no. 2022-06725.
4646
47-
These institutions provided invaluable resources and support for the development and testing of the TwistMethNext pipeline.
47+
These institutions provided invaluable resources and support for the development and testing of the TwistMethylFlow pipeline.
4848

4949
### Additional Thanks
5050

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# TwistMethNext Documentation
1+
# TwistMethylFlow Documentation
22

3-
Welcome to the TwistMethNext documentation. This Nextflow pipeline is designed for the analysis of Twist NGS Methylation data, encompassing quality control, alignment, methylation calling, differential methylation analysis, and post-processing.
3+
Welcome to the TwistMethylFlow documentation. This Nextflow pipeline is designed for the analysis of Twist NGS Methylation data, encompassing quality control, alignment, methylation calling, differential methylation analysis, and post-processing.
44

55
![Pipeline Schematic](./images/Figure%201.png)
66

docs/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
TwistMethNext integrates various tools and custom scripts to provide a comprehensive analysis workflow for Twist NGS Methylation data.
1+
TwistMethylFlow integrates various tools and custom scripts to provide a comprehensive analysis workflow for Twist NGS Methylation data.
22

33
| Step | Tool/Software | Description |
44
|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------|

docs/references.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Citations
22

3-
### TwistMethNext
4-
>**Das, J.** (2024). *TwistMethNext (v1.0.0)*. Zenodo. [https://doi.org/10.5281/zenodo.14204261](https://doi.org/10.5281/zenodo.14204261)
3+
### TwistMethylFlow
4+
>**Das, J.** (2024). *TwistMethylFlow (v1.0.0)*. Zenodo. [https://doi.org/10.5281/zenodo.14204261](https://doi.org/10.5281/zenodo.14204261)
55
66
## Pipeline tools
77

docs/usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ The pipeline needs to use NextFlow, Singularity/Docker/Conda (for container). De
2020
## Run NextFlow
2121

2222
```
23-
nextflow run JD2112/TwistMethNext \
23+
nextflow run JD2112/TwistMethylFlow \
2424
-profile singularity \
2525
--sample_sheet Sample_sheet_twist.csv \
2626
--genome_fasta /data/reference_genome/hg38/hg38.fa \
2727
--run_both_methods \
2828
--gtf_file /data/Homo_sapiens.GRCh38.104.gtf \
2929
--refseq_file /data/hg38_RefSeq.bed.gz \
30-
--outdir Results/TwistMethNext_both
30+
--outdir Results/TwistMethylFlow_both
3131
```
3232

3333
??? info "additional options"

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
site_name: TwistMethNext
1+
site_name: TwistMethylFlow
22
site_description: A Nextflow-based DNA Methylation Data Analysis Pipeline for Twist NGS data
33
site_author: Jyotirmoy Das
4-
repo_url: https://github.com/JD2112/TwistMethNext
4+
repo_url: https://github.com/JD2112/TwistMethylFlow
55
edit_uri: ""
66

77
theme:

0 commit comments

Comments
 (0)