-
-
Notifications
You must be signed in to change notification settings - Fork 35
Add RNA Transcription exercise #74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
5280c50 to
e7afdb1
Compare
|
Hmm looks like Travis is timing out. @lpil @icyrockcom Any ideas? I'll restart it for now. |
| "output" | ||
| ], | ||
| "dependencies": { | ||
| "purescript-console": "^3.0.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think you need all of these.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, not sure what the deal is with the individual bower json files, the README isn't so clear. All of the exercises seem to have the same set of dependencies
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe all the exercises share the same deps now so that we can cache easier on CI
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh....
Ok, ignore me then.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| import Data.Traversable (traverse) | ||
|
|
||
| toRNA :: String -> Maybe String | ||
| toRNA dna = fromCharArray <$> traverse complement (toCharArray dna) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, pending CI passing, and minimizing the dependencies please. Thanks!
|
If you could please resolve conflicts here, I'll get this merged. Thanks! |
|
Thanks! |
Mostly followed the current exercises, in particular this PR #44. I see that some of the
config.jsonkeys have changed since that pull request so this will probably need some changes there.