Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
inf
Guix
Commits
2127cedb
Commit
2127cedb
authored
9 years ago
by
Ricardo Wurmus
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add FASTX Toolkit.
* gnu/packages/bioinformatics.scm (fastx-toolkit): New variable.
parent
f571e1c3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/bioinformatics.scm
+33
-0
33 additions, 0 deletions
gnu/packages/bioinformatics.scm
with
33 additions
and
0 deletions
gnu/packages/bioinformatics.scm
+
33
−
0
View file @
2127cedb
...
@@ -39,6 +39,7 @@ (define-module (gnu packages bioinformatics)
...
@@ -39,6 +39,7 @@ (define-module (gnu packages bioinformatics)
#
:use-module
(
gnu
packages
statistics
)
#
:use-module
(
gnu
packages
statistics
)
#
:use-module
(
gnu
packages
swig
)
#
:use-module
(
gnu
packages
swig
)
#
:use-module
(
gnu
packages
tbb
)
#
:use-module
(
gnu
packages
tbb
)
#
:use-module
(
gnu
packages
textutils
)
#
:use-module
(
gnu
packages
vim
)
#
:use-module
(
gnu
packages
vim
)
#
:use-module
(
gnu
packages
xml
)
#
:use-module
(
gnu
packages
xml
)
#
:use-module
(
gnu
packages
zip
))
#
:use-module
(
gnu
packages
zip
))
...
@@ -471,6 +472,38 @@ (define-public cutadapt
...
@@ -471,6 +472,38 @@ (define-public cutadapt
other types of unwanted sequence from high-throughput sequencing reads."
)
other types of unwanted sequence from high-throughput sequencing reads."
)
(
license
license:expat
)))
(
license
license:expat
)))
(
define-public
fastx-toolkit
(
package
(
name
"fastx-toolkit"
)
(
version
"0.0.14"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
string-append
"https://github.com/agordon/fastx_toolkit/releases/download/"
version
"/fastx_toolkit-"
version
".tar.bz2"
))
(
sha256
(
base32
"01jqzw386873sr0pjp1wr4rn8fsga2vxs1qfmicvx1pjr72007wy"
))))
(
build-system
gnu-build-system
)
(
inputs
`
((
"libgtextutils"
,
libgtextutils
)))
(
native-inputs
`
((
"pkg-config"
,
pkg-config
)))
(
home-page
"http://hannonlab.cshl.edu/fastx_toolkit/"
)
(
synopsis
"Tools for FASTA/FASTQ file preprocessing"
)
(
description
"The FASTX-Toolkit is a collection of command line tools for Short-Reads
FASTA/FASTQ files preprocessing.
Next-Generation sequencing machines usually produce FASTA or FASTQ files,
containing multiple short-reads sequences. The main processing of such
FASTA/FASTQ files is mapping the sequences to reference genomes. However, it
is sometimes more productive to preprocess the files before mapping the
sequences to the genome---manipulating the sequences to produce better mapping
results. The FASTX-Toolkit tools perform some of these preprocessing tasks."
)
(
license
license:agpl3+
)))
(
define-public
flexbar
(
define-public
flexbar
(
package
(
package
(
name
"flexbar"
)
(
name
"flexbar"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment