Skip to content

Commit 70be24d

Browse files
authored
Move psy-fer to scverse (#23)
1 parent 97ab6cf commit 70be24d

13 files changed

Lines changed: 23 additions & 23 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Release notes are extracted from this file by the release workflow.
55
Each released version needs a heading of the form:
66
7-
## [Version X.Y.Z](https://github.com/Psy-Fer/rustar-aligner/releases/tag/vX.Y.Z) - YYYY-MM-DD
7+
## [Version X.Y.Z](https://github.com/scverse/rustar-aligner/releases/tag/vX.Y.Z) - YYYY-MM-DD
88
99
Sections commonly used: Features, Bug fixes, Other changes.
1010
-->

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ rust-version = "1.88"
66
authors = ["James Ferguson"]
77
description = "A Rust reimplementation of STAR (Spliced Transcripts Alignment to a Reference), the RNA-seq aligner"
88
license = "MIT"
9-
repository = "https://github.com/Psy-Fer/rustar-aligner"
9+
repository = "https://github.com/scverse/rustar-aligner"
1010
readme = "README.md"
1111
keywords = ["bioinformatics", "rna-seq", "aligner", "sequencing", "star"]
1212
categories = ["command-line-utilities", "science"]

docs/astro.config.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { defineConfig } from 'astro/config';
33
import starlight from '@astrojs/starlight';
44

55
export default defineConfig({
6-
site: 'https://psy-fer.github.io',
6+
site: 'https://scverse.org',
77
base: '/rustar-aligner',
88
integrations: [
99
starlight({
@@ -31,11 +31,11 @@ export default defineConfig({
3131
{
3232
icon: 'github',
3333
label: 'GitHub',
34-
href: 'https://github.com/Psy-Fer/rustar-aligner',
34+
href: 'https://github.com/scverse/rustar-aligner',
3535
},
3636
],
3737
editLink: {
38-
baseUrl: 'https://github.com/Psy-Fer/rustar-aligner/edit/main/docs/',
38+
baseUrl: 'https://github.com/scverse/rustar-aligner/edit/main/docs/',
3939
},
4040
sidebar: [
4141
{

docs/src/components/Header.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import ThemeToggle from './ThemeToggle.astro';
99
const shouldRenderSearch =
1010
config.pagefind || config.components.Search !== '@astrojs/starlight/components/Search.astro';
1111
12-
const REPO = 'Psy-Fer/rustar-aligner';
12+
const REPO = 'scverse/rustar-aligner';
1313
const BASE = import.meta.env.BASE_URL.replace(/\/?$/, '/');
1414
1515
const navLinks = [

docs/src/content/docs/about/changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: Changelog
33
description: Release history for rustar-aligner.
44
---
55

6-
The authoritative changelog lives at [`CHANGELOG.md`](https://github.com/Psy-Fer/rustar-aligner/blob/main/CHANGELOG.md) in the repository root. This page is a snapshot.
6+
The authoritative changelog lives at [`CHANGELOG.md`](https://github.com/scverse/rustar-aligner/blob/main/CHANGELOG.md) in the repository root. This page is a snapshot.
77

88
## Unreleased
99

1010
Initial release of Rust rewrite of STAR.
1111

1212
---
1313

14-
For the full commit-level history, see the [GitHub releases page](https://github.com/Psy-Fer/rustar-aligner/releases).
14+
For the full commit-level history, see the [GitHub releases page](https://github.com/scverse/rustar-aligner/releases).

docs/src/content/docs/about/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Contributing
33
description: How to build, test, and contribute to rustar-aligner.
44
---
55

6-
Contributions are welcome. The repository is on GitHub at [Psy-Fer/rustar-aligner](https://github.com/Psy-Fer/rustar-aligner).
6+
Contributions are welcome. The repository is on GitHub at [scverse/rustar-aligner](https://github.com/scverse/rustar-aligner).
77

88
## Building and testing
99

docs/src/content/docs/about/license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ SOFTWARE.
2929

3030
## Vendored notices
3131

32-
The repository's `LICENSES/` directory contains license notices for vendored or referenced third-party material. See [`LICENSES/`](https://github.com/Psy-Fer/rustar-aligner/tree/main/LICENSES) on GitHub.
32+
The repository's `LICENSES/` directory contains license notices for vendored or referenced third-party material. See [`LICENSES/`](https://github.com/scverse/rustar-aligner/tree/main/LICENSES) on GitHub.

docs/src/content/docs/getting-started/installation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ To upgrade later, repeat the same command — `cargo install` overwrites in plac
2727

2828
## 2. Docker image from GHCR
2929

30-
Pre-built multi-arch images are published to the [GitHub Container Registry](https://github.com/Psy-Fer/rustar-aligner/pkgs/container/rustar-aligner) for every release. Linux x86_64 and aarch64 are both supported.
30+
Pre-built multi-arch images are published to the [GitHub Container Registry](https://github.com/scverse/rustar-aligner/pkgs/container/rustar-aligner) for every release. Linux x86_64 and aarch64 are both supported.
3131

3232
```bash
33-
docker pull ghcr.io/psy-fer/rustar-aligner:latest
34-
docker run --rm ghcr.io/psy-fer/rustar-aligner:latest --version
33+
docker pull ghcr.io/scverse/rustar-aligner:latest
34+
docker run --rm ghcr.io/scverse/rustar-aligner:latest --version
3535
```
3636

3737
### Available tags
@@ -52,7 +52,7 @@ docker run --rm \
5252
-v /local/genome_index:/genome \
5353
-v /local/reads:/reads \
5454
-v /local/output:/output \
55-
ghcr.io/psy-fer/rustar-aligner:latest \
55+
ghcr.io/scverse/rustar-aligner:latest \
5656
--genomeDir /genome \
5757
--readFilesIn /reads/sample_1.fq.gz /reads/sample_2.fq.gz \
5858
--readFilesCommand zcat \
@@ -73,7 +73,7 @@ For development work, or when you want a build tuned for your specific machine,
7373
### Clone and build
7474

7575
```bash
76-
git clone https://github.com/Psy-Fer/rustar-aligner.git
76+
git clone https://github.com/scverse/rustar-aligner.git
7777
cd rustar-aligner
7878
cargo build --release
7979
```

docs/src/content/docs/guides/migrating-from-star.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Then compare with your favourite SAM/BAM diff tool. The repository's `test/compa
9898

9999
## Reporting incompatibilities
100100

101-
If you find a divergence from STAR that isn't documented in [STAR compatibility](/rustar-aligner/reference/star-compatibility/), please [open an issue](https://github.com/Psy-Fer/rustar-aligner/issues) with:
101+
If you find a divergence from STAR that isn't documented in [STAR compatibility](/rustar-aligner/reference/star-compatibility/), please [open an issue](https://github.com/scverse/rustar-aligner/issues) with:
102102

103103
- The STAR command line you ran
104104
- A small input dataset (or pointer to one) that reproduces the divergence

docs/src/content/docs/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Image } from 'astro:assets';
77
import rustarIcon from '../../assets/rustar-icon.svg';
88

99
export const installCode = `<span class="comment"># Step 1 · install</span>
10-
<span class="prompt">$</span> cargo install <span class="flag">--git</span> https://github.com/Psy-Fer/rustar-aligner
10+
<span class="prompt">$</span> cargo install <span class="flag">--git</span> https://github.com/scverse/rustar-aligner
1111
1212
<span class="comment"># Step 2 · align</span>
1313
<span class="prompt">$</span> rustar-aligner \\
@@ -26,7 +26,7 @@ export const installCode = `<span class="comment"># Step 1 · install</span>
2626
<p class="lead-2">Same <code>{'--camelCase'}</code> CLI. Same SAM/BAM output formats. 99.883% mate-pair faithfulness on a 10,000-pair yeast benchmark, with zero MAPQ inflations.</p>
2727
<div class="rustar-btns rustar-hero-btns">
2828
<a href="/rustar-aligner/getting-started/introduction/" class="primary">Documentation</a>
29-
<a href="https://github.com/Psy-Fer/rustar-aligner">GitHub ↗</a>
29+
<a href="https://github.com/scverse/rustar-aligner">GitHub ↗</a>
3030
</div>
3131
</div>
3232
<Image src={rustarIcon} alt="rustar-aligner mascot: a red crab cradling a golden starfish" class="rustar-mascot" loading="eager" />

0 commit comments

Comments
 (0)