Skip to content

Commit 4e5d040

Browse files
committed
Removed debugging message and incremented version counter
1 parent 51930cc commit 4e5d040

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

BlastHTTP.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: BlastHTTP
77
-- PVP summary: +-+------- breaking API changes
88
-- | | +----- non-breaking API additions
99
-- | | | +--- code changes with no API change
10-
version: 1.0.1
10+
version: 1.1.0
1111
synopsis: Libary to interface with the NCBI blast REST interface
1212
description: Searches for a provided nucleotide or protein sequence with the NCBI Blast REST service and returns a blast result in xml format as BlastResult datatype.
1313
.

src/Bio/BlastHTTP.hs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ performQuery provider' program' database' querySequences' optionalArgumentMaybe
173173
| otherwise = do
174174
let sequenceString = urlEncode (concatMap showSequenceString querySequences')
175175
rid <- startSession provider' program' database' sequenceString optionalArgumentMaybe
176-
putStrLn ("sequenceString" ++ sequenceString)
177176
checkSessionStatus provider' rid
178177

179178
showSequenceString :: Sequence -> String
@@ -182,10 +181,6 @@ showSequenceString fastaSequence = sequenceString
182181
sequenceData = L8.unpack (unSD (seqdata fastaSequence)) ++ "\n"
183182
sequenceString = sequenceHeader ++ sequenceData
184183

185-
-- | unpack SeqData from Sequence
186-
unpackSeqData :: Sequence -> String
187-
unpackSeqData inputSequence = L8.unpack (unSD (seqdata inputSequence))
188-
189184
-- | Retrieve Blast results in BlastXML format from the NCBI REST Blast interface
190185
-- The querySequence has to be provided, all other parameters are optional and can be set to Nothing
191186
-- optionalArguments is attached to the query as is .e.g: "&ALIGNMENTS=250"

0 commit comments

Comments
 (0)