Skip to content
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

Week04 #106

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 17 additions & 6 deletions weeks/week04/0_alignment_expression_quantification.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"metadata": {
"collapsed": false,
"deletable": false,
Expand All @@ -336,7 +336,18 @@
"solution": false
}
},
"outputs": [],
"outputs": [
{
"data": {
"text/plain": [
"33"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"ord('!')"
]
Expand Down Expand Up @@ -384,7 +395,7 @@
}
],
"source": [
"10**(-(ord(\"A\") - ord(\"!\"))/10)"
"10**(-(ord('A')-33)/10)"
]
},
{
Expand Down Expand Up @@ -505,7 +516,7 @@
}
},
"source": [
"YOUR ANSWER HERE"
"We can use the \"basic\" annotation when only interested in full length protein coding transcripts instead of those partial or non-protein coding transcripts. "
]
},
{
Expand Down Expand Up @@ -968,7 +979,7 @@
}
},
"source": [
"YOUR ANSWER HERE"
"abundance.txt"
]
},
{
Expand Down Expand Up @@ -1114,7 +1125,7 @@
}
},
"source": [
"YOUR ANSWER HERE"
"a10_featureCounts.txt includes gene ID, chromosome, start site, end site, strand and length of each feature, while kallisto/abundance.tsv includes the ID, length, estimated counts and TPM of each transcripts. "
]
},
{
Expand Down
Loading